-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
138 lines (102 loc) · 4.41 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
%%%%%%%%%%%%%%%%%
%Kloia CV Template
%%%%%%%%%%%%%%%%
%% If you want to use \orcid or the
%% academicons icons, add "academicons"
%% to the \documentclass options.
%% Then compile with XeLaTeX or LuaLaTeX.
% \documentclass[10pt,a4paper,academicons]{altacv}
%% Use the "normalphoto" option if you want a normal photo instead of cropped to a circle
% \documentclass[10pt,a4paper,normalphoto]{altacv}
\documentclass[10pt,a4paper]{altacv}
%% AltaCV uses the fontawesome and academicon fonts
%% and packages.
%% See texdoc.net/pkg/fontawecome and http://texdoc.net/pkg/academicons for full list of symbols.
%% When using the "academicons" option,
%% Compile with LuaLaTeX for best results. If you
%% want to use XeLaTeX, you may need to install
%% Academicons.ttf in your operating system's font %% folder.
% Change the page layout if you need to
\geometry{left=1cm,right=9cm,marginparwidth=6.8cm,marginparsep=1.2cm,top=1cm,bottom=1cm}
% Change the font if you want to.
% If using pdflatex:
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[sfdefault]{roboto}
% If using xelatex or lualatex:
% \setmainfont{Lato}
% Change the colours if you want to
\definecolor{Blue}{HTML}{2986cc}
\definecolor{SlateGrey}{HTML}{2E2E2E}
\definecolor{LightGrey}{HTML}{666666}
\colorlet{heading}{Blue}
\colorlet{accent}{Blue}
\colorlet{emphasis}{SlateGrey}
\colorlet{body}{LightGrey}
% Change the bullets for itemize and rating marker
% for \cvskill if you want to
\renewcommand{\itemmarker}{{\small\textbullet}}
\renewcommand{\ratingmarker}{\faCircle}
\begin{document}
\name{John Doe}
\tagline{QA Test Automation Engineer}
\photo{3cm}{kloia.png}
\personalinfo{
\email{[email protected]}
\phone{+123456789010}
\location{Istanbul 5020, Turkey}
\printinfo{\faLinkedinSquare}{/in/johndoekloia/}
% Not all of these are required!
% You can add your own with \printinfo{symbol}{detail}
% \phone{000-00-0000}
% \orcid{orcid.org/0000-0000-0000-0000}
% Obviously making this up too. If you want to use this field (and also other academicons symbols), add "academicons" option to \documentclass{altacv}
}
%% Make the header extend all the way to the right, if you want.
\begin{fullwidth}
\makecvheader
\end{fullwidth}
%% Provide the file name containing the sidebar contents as an optional parameter to \cvsection.
%% You can always just use \marginpar{...} if you do
%% not need to align the top of the contents to any
%% \cvsection title in the "main" bar.
\cvsection[page1sidebar]{Experience}
\cvevent{QA Test Automation Engineer}{Kloia}{December 2021 - Current}{Turkey}
\begin{itemize}
\item Conducting automated and manual tests to ensure the software fits its purpose.
\item Developing and automating tests for software validation, detecting bug issues, and preparing reports.
\item Creating docker images with project dependencies to lessen inconsistencies
\item CI/CD pipeline integration of the projects with tools such as Jenkins.
\item Parallel run and autoscaling configurations with Selenium Grid, Kubernetes and KEDA.
\item Experienced in Automated API testing with Karate Framework. Also familiar with Postman collections.
\item Experienced in Automated UI testing with Java - Python - Selenium WebDriver - Cucumber - Maven - Behave.
\item Experienced in Automated Mobile testing with Appium on Android and iOS.
\item Advanced knowledge of RegEx.
\end{itemize}
% \divider
% \cvevent{Product Engineer}{Google}{23 June 1999 -- 2001}{Palo Alto, CA}
% \begin{itemize}
% \item Joined the company as employe \#20 and female employee \#1
% \item Developed targeted advertisement in order to use user's search queries and show them related ads
% \end{itemize}
\cvsection {Areas of Expertise}
{\printinfo{\faTv}{\large\textbf{Software Skills}}
\quad
\begin{itemize}
\item Python, Ruby, Regex, Appium, Karate, Capybara, Cucumber, BDD, POM, Docker, Selenium, Git, Jenkins, Behave, Gherkin, Kubernetes, KEDA, Selenium Grid
\end{itemize}
\quad
{\printinfo{\faGroup}{\large\textbf{Soft Skills}}
\quad
\begin{itemize}
\item Creativeness and ability to find new ways.
\item Excellent problem solving skills.
\item Teamwork and collaboration skills.
\end{itemize}
%% If the NEXT page doesn't start with a \cvsection but you'd
%% still like to add a sidebar, then use this command on THIS
%% page to add it. The optional argument lets you pull up the
%% sidebar a bit so that it looks aligned with the top of the
%% main column.
% \addnextpagesidebar[-1ex]{page3sidebar}
\end{document}