Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CGI Group Team. If you also belong to the team, you can get access from here

CGI Group Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

CGI Group Automation Engineer Interview Questions and Answers

Updated 4 Sep 2024

7 Interview questions

An Automation Engineer was asked 9mo ago
Q. What framework are you using in your project?
Ans. 

We are using the Selenium framework for automation testing in our project.

  • Selenium is a popular open-source automation testing framework

  • It supports multiple programming languages like Java, Python, C#, etc.

  • Selenium WebDriver is used for automating web applications

  • It provides features for browser automation, testing across different browsers, and parallel test execution

An Automation Engineer was asked 9mo ago
Q. Explain the framework structure.
Ans. 

Framework structure refers to the organization and layout of the automation framework components.

  • Framework structure includes modules, libraries, test scripts, configuration files, and test data.

  • It follows a hierarchical structure with layers such as driver scripts, reusable libraries, and test cases.

  • Frameworks can be structured as linear, modular, data-driven, keyword-driven, or hybrid.

  • Example: In a data-driven f...

Automation Engineer Interview Questions Asked at Other Companies

asked in GEA Group
Q1. 16) What is modbus ? Types of modbus? How many slaves we can conn ... read more
Q2. 1. Explain oops concepts in coding. 2. Write a program to find mi ... read more
asked in Blue Yonder
Q3. What is the difference between Absolute and Relative XPaths?
asked in GEA Group
Q4. What is the ASI protocol? How many slaves can be connected to one ... read more
Q5. Write a program to find the number of palindrome words in a given ... read more
An Automation Engineer was asked 9mo ago
Q. How do you handle multiple tabs in Selenium?
Ans. 

Handling multiple tabs in Selenium involves switching between tabs and performing actions on each tab.

  • Use getWindowHandles() to get a set of window handles

  • Switch to a specific tab using switchTo().window(handle)

  • Perform actions on the tab

  • Close the tab if needed using driver.close()

An Automation Engineer was asked 9mo ago
Q. What is the difference between findElement and findElements?
Ans. 

findelement returns the first matching element on a webpage, findelements returns a list of all matching elements.

  • findelement returns a single WebElement, findelements returns a list of WebElements

  • findelement throws NoSuchElementException if no element is found, findelements returns an empty list

  • Example: driver.findElement(By.id("exampleId")) vs driver.findElements(By.className("exampleClass"))

What people are saying about CGI Group

View All
a software engineer
2w
Need your thoughts!
Got two offers with the same CTC: CGI (Hybrid, Bengaluru) and Payoda (WFH). Which one should I pick?
Got a question about CGI Group?
Ask anonymously on communities.
An Automation Engineer was asked 9mo ago
Q. Why do we use try and catch blocks?
Ans. 

Try and catch blocks are used in programming to handle exceptions and prevent the program from crashing.

  • Try block is used to enclose the code that might throw an exception

  • Catch block is used to handle the exception thrown in the try block

  • It prevents the program from crashing and allows for graceful error handling

  • Can also include finally block to execute code regardless of whether an exception is thrown

An Automation Engineer was asked 9mo ago
Q. Explain Hashmaps.
Ans. 

Hashmaps are data structures that store key-value pairs and allow for efficient retrieval of values based on keys.

  • Hashmaps are also known as dictionaries, maps, or associative arrays.

  • They use a hash function to map keys to indices in an underlying array.

  • Hashmaps offer constant-time average case complexity for insertion, deletion, and lookup operations.

  • Example: HashMap<String, Integer> map = new HashMap<&g...

🔥 Asked by recruiter 3 times
An Automation Engineer was asked 9mo ago
Q. What is inheritance?
Ans. 

Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

  • Allows a class to inherit attributes and methods from another class

  • Promotes code reusability and reduces redundancy

  • Creates a parent-child relationship between classes

  • Derived class can access the properties and methods of the base class

  • Example: Class 'Car' can inherit from class 'Vehicle'

Are these interview questions helpful?

CGI Group Automation Engineer Interview Experiences

3 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What framework you are using in your project?
  • Ans. 

    We are using the Selenium framework for automation testing in our project.

    • Selenium is a popular open-source automation testing framework

    • It supports multiple programming languages like Java, Python, C#, etc.

    • Selenium WebDriver is used for automating web applications

    • It provides features for browser automation, testing across different browsers, and parallel test execution

  • Answered by AI
  • Q2. Explain about the framework structure
  • Ans. 

    Framework structure refers to the organization and layout of the automation framework components.

    • Framework structure includes modules, libraries, test scripts, configuration files, and test data.

    • It follows a hierarchical structure with layers such as driver scripts, reusable libraries, and test cases.

    • Frameworks can be structured as linear, modular, data-driven, keyword-driven, or hybrid.

    • Example: In a data-driven framew...

  • Answered by AI
  • Q3. Difference between findelement and findelements
  • Ans. 

    findelement returns the first matching element on a webpage, findelements returns a list of all matching elements.

    • findelement returns a single WebElement, findelements returns a list of WebElements

    • findelement throws NoSuchElementException if no element is found, findelements returns an empty list

    • Example: driver.findElement(By.id("exampleId")) vs driver.findElements(By.className("exampleClass"))

  • Answered by AI
  • Q4. How to handle multiple tabs in selenium
  • Ans. 

    Handling multiple tabs in Selenium involves switching between tabs and performing actions on each tab.

    • Use getWindowHandles() to get a set of window handles

    • Switch to a specific tab using switchTo().window(handle)

    • Perform actions on the tab

    • Close the tab if needed using driver.close()

  • Answered by AI
  • Q5. Explain about hashmaps
  • Ans. 

    Hashmaps are data structures that store key-value pairs and allow for efficient retrieval of values based on keys.

    • Hashmaps are also known as dictionaries, maps, or associative arrays.

    • They use a hash function to map keys to indices in an underlying array.

    • Hashmaps offer constant-time average case complexity for insertion, deletion, and lookup operations.

    • Example: HashMap<String, Integer> map = new HashMap<>();...

  • Answered by AI
  • Q6. Why we use try and catch
  • Ans. 

    Try and catch blocks are used in programming to handle exceptions and prevent the program from crashing.

    • Try block is used to enclose the code that might throw an exception

    • Catch block is used to handle the exception thrown in the try block

    • It prevents the program from crashing and allows for graceful error handling

    • Can also include finally block to execute code regardless of whether an exception is thrown

  • Answered by AI
  • Q7. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class can inherit attributes and methods from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can access the properties and methods of the base class

    • Example: Class 'Car' can inherit from class 'Vehicle'

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Asked to solve Java simple problem, questions on Selenium and java

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. But after interview there was no feedback.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

What people are saying about CGI Group

View All
a software engineer
2w
Need your thoughts!
Got two offers with the same CTC: CGI (Hybrid, Bengaluru) and Payoda (WFH). Which one should I pick?
Got a question about CGI Group?
Ask anonymously on communities.

I applied via Naukri.com and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(6 Questions)

  • Q1. What is your family background?
  • Ans. 

    I come from a supportive family that values education and hard work, which has greatly influenced my career path in technology.

    • Parents: My parents are both educators, instilling a love for learning and curiosity in me from a young age.

    • Siblings: I have a younger sister who is pursuing a degree in computer science, and we often collaborate on tech projects together.

    • Family Values: Our family emphasizes the importance of p...

  • Answered by AI
  • Q2. Why should we hire you?
  • Ans. 

    I bring a unique blend of technical skills, problem-solving abilities, and a passion for innovation that aligns with your team's goals.

    • Strong technical skills: Proficient in languages like Python and Java, demonstrated by developing a web application that improved user engagement by 30%.

    • Problem-solving mindset: Successfully resolved a critical bug in a production system under tight deadlines, ensuring minimal downtime.

    • ...

  • Answered by AI
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards, ideally in the range of $X to $Y.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider your experience: If you have 5 years of experience, you might expect a higher salary than someone just starting.

    • Factor in location: Salaries can vary significantly based...

  • Answered by AI
  • Q5. What are your strengths and weaknesses?
  • Ans. 

    I excel in problem-solving and teamwork, but I sometimes struggle with time management under tight deadlines.

    • Strength: Strong problem-solving skills - I enjoy tackling complex coding challenges, like optimizing algorithms for better performance.

    • Strength: Effective teamwork - I thrive in collaborative environments, having successfully led a project with cross-functional teams.

    • Weakness: Time management - I occasionally u...

  • Answered by AI
  • Q6. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. Do you have technical certifications? How many programming languages do you known? How many development tools have you used?
  • Ans. 

    Yes, I have technical certifications and I am proficient in multiple programming languages and development tools.

    • I have certifications in Java and Python

    • I am proficient in Java, Python, C++, and JavaScript

    • I have used development tools such as Eclipse, Visual Studio Code, and PyCharm

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your soft skills
Move frequently
value your reputation
Get experience at a any company

I applied via Job Portal and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. First they ask basic questions like HTML SQL Java.

Interview Preparation Tips

Interview preparation tips for other job seekers - First we learn basics programming knowledge and we confident to attend interview and speak bold.

I applied via Naukri.com and was interviewed in Aug 2018. There was 0 interview round.

Interview Preparation Tips

General Tips: All Java basic questions will be asked including servlets and jsp even about application and web servers. To clear,1st round you should have strong core Java knowledge along with few real time examples. Collections are mandatory.
Database knowledge could be expected. RestFul and soap along with spring and spring boot, your project details and your responsibilities.
Skills: SOAP, RestFul, Spring, Springboot, Java Application Development, Java Programming, Javascript, Communication, Body Language, Problem Solving, Analytical Skills, Decision Making Skills
Duration: 1-4 weeks
Are these interview questions helpful?

I applied via Applied in more than one job portal can't remember now. and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About struts framework.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had three rounds of telephonic, technical, HR, interviews, I can say this confidence is important in all aspects.

Interview Preparation Tips

Round: Resume Shortlist
Experience: This round they want to know about why do you want to leave your job?
current ctc
expected ctc
how many experience do you have on particular technology?
Tips: this round is simple you have to tell all the details of your profile and if they want this profile candidate they shortlisted you..
they want positive response, so be positive.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had sent my resume to the hiring group, Selection through telephonic interviews. I was interviewed by three different research groups  (once by each).
Tips: Factors in decreasing order of importance: CGPA each stage. Ability to explain your projects precisely. Ability to solve ''standard" logarithmic problems.  The way you think and put down your Answer is the most important. The final answer .s not so I important, and they prod you when you think out aloud anyway.

Round: Technical Interview
Experience: Almost- by default they ask about your previous projects/internships if they are relevant to the group. Ofher questions depend on the group you are interviewed by and your own profile, In my case it was machine learning, text mining etc. I was told about the research problem they were dealing with then and asked f or comments/suggestions/.inputs and a discussion followed.
Tips: Basically these are specialized Interviews so it's good to have sound knowledge of your domain (analytical and application skills are very much required).

Skill Tips: CGPA>9.0, 1f not (like me) relevant work done in the domain and in past internship.A recommendation from the professor is also a good add on.
College Name: IIT Madras

CGI Group Interview FAQs

How many rounds are there in CGI Group Automation Engineer interview?
CGI Group interview process usually has 1 rounds. The most common rounds in the CGI Group interview process are Technical and Coding Test.
How to prepare for CGI Group Automation Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at CGI Group. The most common topics and skills that interviewers at CGI Group expect are CGI, Python, JIRA, Selenium and Automation.
What are the top questions asked in CGI Group Automation Engineer interview?

Some of the top questions asked at the CGI Group Automation Engineer interview -

  1. what framework you are using in your proje...read more
  2. how to handle multiple tabs in selen...read more
  3. why we use try and ca...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
CGI Group Automation Engineer Salary
based on 22 salaries
₹3 L/yr - ₹12.1 L/yr
At par with the average Automation Engineer Salary in India
View more details

CGI Group Automation Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

3.0

Salary

2.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
8.3k salaries
unlock blur

₹5 L/yr - ₹12 L/yr

Senior Software Engineer
7.6k salaries
unlock blur

₹7.9 L/yr - ₹18.5 L/yr

Lead Analyst
3.3k salaries
unlock blur

₹10 L/yr - ₹35.7 L/yr

Associate Software Engineer
1.9k salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Senior Test Engineer
1.3k salaries
unlock blur

₹9.4 L/yr - ₹17.6 L/yr

Explore more salaries
Compare CGI Group with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview