Upload Button Icon Add office photos
Engaged Employer

i

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

Capgemini Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Clear (1)

Capgemini Automation Test Engineer Interview Questions, Process, and Tips

Updated 3 Jan 2025

Top Capgemini Automation Test Engineer Interview Questions and Answers

  • Q1. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium and code for it 4] Scenario based questions 5] types of frameworks 6] how to read data from excel 7] Codin ...read more
  • Q2. What is assertion? What is soft assertion? What is hard assertion?
  • Q3. What is TestNG? Write the methods name? Importance.
View all 58 questions

Capgemini Automation Test Engineer Interview Experiences

43 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Mar 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Dynamic xpath Explain how have u implemented oops concept in ur framework
  • Ans. 

    Implemented OOPs concepts in framework by creating classes for pages, utilities, and test cases.

    • Used inheritance to create base classes for common functionalities

    • Encapsulated data and methods within classes to promote reusability

    • Implemented polymorphism to allow different actions based on context

    • Utilized abstraction to hide complex implementation details from users

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Coding in java with strings
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Skills evaluated in this interview

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 Resume tips
Round 2 - HR 

(4 Questions)

  • Q1. About automation testing we need discussion.
  • Q2. About manual testing discussions.
  • Q3. And about my last time working project.
  • Q4. And overall what i am working in last project.

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is friendly discussion about my interviews and what I am comfortably I answering same thing.

Automation Test Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. How to handle scrollbar and mouse activities Jenkins and Github S ... read more
asked in Infosys
Q2. Introduce yourself 1.What is STLC 2. difference between Test plan ... read more
Q3. What is Automation? what is selenium?what is xpath? what is regre ... read more
asked in TCS
Q4. 1) cucumber 2) Defects worked on, tell me about the bugs you foun ... read more
asked in Capgemini
Q5. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium a ... read more

I applied via Company Website and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium and code for it 4] Scenario based questions 5] types of frameworks 6] how to read data from excel 7] Coding questions based on- handling drop...
  • Ans. 

    Interview questions for Automation Test Engineer

    • Sanity testing is a subset of regression testing while smoke testing is a subset of acceptance testing

    • Waits in Selenium are used to synchronize the test execution with the application's response

    • Types of frameworks include data-driven, keyword-driven, and hybrid frameworks

    • Reading data from Excel can be done using Apache POI library

    • Handling dropdown in Selenium can be done ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well, but it depends on interviewer as well.
My interviewer was too rude and was not stick to the question he asked for.

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Jun 2022. There were 2 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 Resume tips
Round 2 - Aptitude Test 

Mathematics and English and general questions

Interview Preparation Tips

Topics to prepare for Capgemini Automation Test Engineer interview:
  • Automation Testing
  • Manual Testing
  • Additional questions
Interview preparation tips for other job seekers - Sir you ask the normal questions, and automation and manual testing I compatible to speak.

Capgemini interview questions for designations

 Senior Automation Test Engineer

 (5)

 Manual Automation Test Engineer

 (1)

 Test Automation Architect

 (2)

 Automation Test Lead

 (1)

 Sdet Automation Test Engineer

 (4)

 Test Engineer

 (16)

 Senior Automation Engineer

 (3)

 QA Automation Engineer

 (1)

Automation Test Engineer Interview Questions & Answers

user image Nitish Ranjan Shrivastava

posted on 13 Jan 2022

I applied via Recruitment Consultant and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

27 Questions

  • Q1. Describe your framework and project?
  • Ans. 

    My framework is a hybrid framework that uses both data-driven and keyword-driven approaches. The project is a web-based application for e-commerce.

    • The framework uses Selenium WebDriver for web automation

    • It has a modular structure with reusable components

    • Test data is stored in Excel sheets and accessed using Apache POI

    • Test cases are written in Java and organized using TestNG

    • Reporting is done using ExtentReports

    • The proje...

  • Answered by AI
  • Q2. What is parallel testing? Write the code.
  • Ans. 

    Parallel testing is running multiple tests simultaneously to save time and increase efficiency.

    • Parallel testing is useful for large test suites that take a long time to run.

    • It requires a test framework that supports parallel execution.

    • Code example: pytest -n 4 (runs 4 tests in parallel)

    • Parallel testing can be done on multiple machines or on a single machine with multiple cores.

    • It can help identify and isolate issues fa...

  • Answered by AI
  • Q3. Write the cod for switching between browser's tab?
  • Ans. 

    Code for switching between browser's tab

    • Use driver.switchTo().window() method to switch between tabs

    • Pass the window handle of the tab to be switched to as argument

    • Get the window handles of all tabs using driver.getWindowHandles() method

    • Example: String currentTab = driver.getWindowHandle(); driver.switchTo().window(currentTab);

    • Example: Set allTabs = driver.getWindowHandles(); driver.switchTo().window(allTabs.toArray()[1

  • Answered by AI
  • Q4. Write the code for mouse click function?
  • Ans. 

    Code for mouse click function

    • Use Selenium WebDriver's click() method to simulate mouse click

    • Identify the element using locators like ID, class name, xpath, etc.

    • Example: driver.findElement(By.id("elementID")).click();

  • Answered by AI
  • Q5. Selection the drop down from the list.
  • Q6. Insert the value in text box by using excel sheet through Selenium.
  • Ans. 

    To insert value in text box using excel sheet through Selenium, we need to read data from excel and use sendKeys() method.

    • Read data from excel using Apache POI or JXL library

    • Identify the text box element using Selenium

    • Use sendKeys() method to insert the value from excel into the text box

  • Answered by AI
  • Q7. Run only failed test cases from all.
  • Ans. 

    To run only failed test cases, we can use testNG or JUnit annotations and configure the test suite accordingly.

    • Use testNG or JUnit annotations to mark the test cases as failed or passed

    • Configure the test suite to run only failed test cases

    • Use tools like Jenkins to automate the process

    • Example: @Test(enabled = true, retryAnalyzer = RetryAnalyzer.class) public void testMethod() {}

    • Example:

  • Answered by AI
  • Q8. How do you decide that it's required Automation in your developing projects.
  • Q9. Describe final key, static, finally, finalized, garbage collection.
  • Ans. 

    Explanation of final key, static, finally, finalized, garbage collection.

    • Final key - used to declare a constant value that cannot be changed

    • Static - used to declare a variable or method that belongs to the class rather than an instance of the class

    • Finally - used to define a block of code that will be executed regardless of whether an exception is thrown or not

    • Finalized - a method that is called by the garbage collector...

  • Answered by AI
  • Q10. Absolute and dynamic xpath
  • Q11. Write the xpath manually
  • Ans. 

    Answering the question to write an xpath manually.

    • Identify the element to be located

    • Determine the unique attributes of the element

    • Construct the xpath using the identified attributes

    • Test the xpath to ensure it accurately locates the element

  • Answered by AI
  • Q12. What is POM? What is Maven?
  • Ans. 

    POM stands for Page Object Model. Maven is a build automation tool.

    • POM is a design pattern used in test automation to create an object repository for web UI elements.

    • It helps in reducing code duplication and improves code maintainability.

    • Maven is a popular build automation tool used for managing dependencies and building Java projects.

    • It uses a pom.xml file to define project dependencies and configurations.

    • Maven can al...

  • Answered by AI
  • Q13. What is agile methodology? What is CI CD pipe line?
  • Ans. 

    Agile methodology is an iterative approach to software development that emphasizes collaboration, flexibility, and customer satisfaction. CI/CD pipeline is a set of practices that automate the process of building, testing, and deploying software.

    • Agile methodology involves breaking down a project into smaller, more manageable pieces called sprints.

    • Each sprint involves a cross-functional team working together to deliver ...

  • Answered by AI
  • Q14. Difference between Keyword driven, Data driven and Hybrid framework?
  • Ans. 

    Keyword driven, Data driven and Hybrid are automation frameworks used in software testing.

    • Keyword driven framework uses keywords to represent actions and data to be used in testing

    • Data driven framework uses external data sources to drive the test cases

    • Hybrid framework combines both keyword and data driven approaches

    • Keyword driven is best suited for applications with complex user interfaces

    • Data driven is best suited for...

  • Answered by AI
  • Q15. What is assertion? What is soft assertion? What is hard assertion?
  • Ans. 

    Assertion is a validation point to check if the expected result matches the actual result. Soft assertion doesn't stop the test execution on failure, while hard assertion does.

    • Assertion is a way to validate if the expected result matches the actual result

    • Soft assertion doesn't stop the test execution on failure, but logs the failure and continues with the test

    • Hard assertion stops the test execution on failure and marks...

  • Answered by AI
  • Q16. What are locators?
  • Ans. 

    Locators are identifiers used to locate web elements on a webpage for automation testing.

    • Locators can be based on ID, class name, name, tag name, link text, partial link text, CSS selector, or XPath.

    • For example, a locator for a login button could be 'id=loginButton' or 'xpath=//button[contains(text(),'Login')]'.

    • Choosing the right locator is important for reliable and efficient test automation.

    • Locators can be stored in ...

  • Answered by AI
  • Q17. What is TestNG? Write the methods name? Importance.
  • Q18. What is unit testing?
  • Ans. 

    Unit testing is a software testing technique where individual units or components of a software application are tested in isolation.

    • Unit testing is done by developers during the development phase.

    • It helps in identifying defects early in the development cycle.

    • It ensures that each unit/component of the software application is working as expected.

    • Unit tests are automated and can be run frequently to ensure that changes ma...

  • Answered by AI
  • Q19. Find the second high score in sql.
  • Ans. 

    SQL query to find the second highest score.

    • Use the ORDER BY clause to sort the scores in descending order.

    • Use the LIMIT clause to limit the result to the second row.

    • Use a subquery to exclude the highest score from the result.

  • Answered by AI
  • Q20. Find the duplicate value.
  • Ans. 

    To find duplicate values, iterate through the list and compare each element with the rest of the list.

    • Create an empty list to store the duplicate values.

    • Iterate through the list and compare each element with the rest of the list.

    • If a duplicate is found, add it to the duplicate list.

    • Return the duplicate list.

  • Answered by AI
  • Q21. How many joins are there in Sql. Write the query for each joins.
  • Ans. 

    There are four types of joins in SQL: Inner Join, Left Join, Right Join, and Full Outer Join.

    • Inner Join: returns only the matching rows from both tables

    • Left Join: returns all the rows from the left table and matching rows from the right table

    • Right Join: returns all the rows from the right table and matching rows from the left table

    • Full Outer Join: returns all the rows from both tables, with NULL values in the columns w

  • Answered by AI
  • Q22. Primary key , foriegn key unique key in Sql
  • Ans. 

    Primary key, foreign key, and unique key are all used in SQL to enforce data integrity and relationships between tables.

    • A primary key is a unique identifier for a record in a table.

    • A foreign key is a field in one table that refers to the primary key in another table.

    • A unique key ensures that a column or set of columns in a table contains only unique values.

    • Primary keys and unique keys can be used to enforce data integr...

  • Answered by AI
  • Q23. Take the backup of the table and insert the value in the same table of another database.
  • Ans. 

    To take backup of a table and insert values in the same table of another database.

    • Use SQL Server Management Studio to take backup of the table

    • Restore the backup in the target database

    • Use SQL queries to insert values from source table to target table

  • Answered by AI
  • Q24. How to write good test cases? What is required when you creating test plan?
  • Ans. 

    Good test cases require clear objectives, thorough planning, and attention to detail.

    • Identify the objective of the test case

    • Ensure the test case is specific, measurable, achievable, relevant, and time-bound (SMART)

    • Consider all possible scenarios and edge cases

    • Document the expected results

    • Include preconditions and post-conditions

    • Ensure the test case is repeatable and reproducible

    • Review and validate the test case with st

  • Answered by AI
  • Q25. What is bug life cycle?
  • Ans. 

    Bug life cycle is the process of identifying, reporting, resolving, and verifying software defects.

    • Bug is identified by testers or users

    • Bug is reported to the development team

    • Development team resolves the bug

    • Bug fix is verified by testers

    • Bug is closed if verified or reopened if not

    • Bug life cycle stages include new, open, assigned, resolved, verified, and closed

  • Answered by AI
  • Q26. What is sprint in agile methodology?
  • Ans. 

    A sprint is a time-boxed period in Agile methodology during which a team completes a set amount of work.

    • Sprints usually last 1-4 weeks

    • At the beginning of each sprint, the team plans the work they will complete

    • The team works on the planned work during the sprint

    • At the end of the sprint, the team demonstrates the completed work to stakeholders

    • The team then reflects on the sprint and plans for the next one

  • Answered by AI
  • Q27. How will you track the task in Jira?
  • Ans. 

    To track tasks in Jira, I will create issues, assign them to team members, set priorities, and update their status.

    • Create issues in Jira for each task

    • Assign the issues to team members

    • Set priorities for each issue

    • Update the status of each issue as it progresses

    • Use Jira's reporting features to track progress and identify bottlenecks

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go with your basic concept of Java. Should have good hands on your project that you have worked. Try to include all latest and easy architecture in the framework and explains it properly. Just do hands-on on your query. Write a program on daily basis.

Skills evaluated in this interview

Get interview-ready with Top Capgemini Interview Questions

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java ,oops concepts,basic automation questios

Interview Preparation Tips

Interview preparation tips for other job seekers - good and easy to answer need to have good idea o basics then only we can answer

Automation Test Engineer Jobs at Capgemini

View all

Interview Questionnaire 

1 Question

  • Q1. Basics of selenium and java

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was a bit difficult. They asked to write a program and also asked some basics of database query’s.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2021. There were 2 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Basic of selenium and java
  • Q2. WAP to reverse a string
  • Ans. 

    A program to reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the given string from the end and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q3. How to find color of webelement in selenium
  • Ans. 

    To find the color of a webelement in Selenium, use the getCssValue() method.

    • Locate the webelement using any of the available locators in Selenium

    • Use the getCssValue() method to get the value of the CSS property 'color'

    • The value returned will be in the format 'rgba(255, 0, 0, 1)'

    • Use any color picker tool to convert the RGB value to the corresponding color name

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare general selenium and java , general java programming

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basics concept of core java, few programs in collection framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in logic and basics

I applied via Approached by Company and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain about Oops concepts
  • Ans. 

    Oops concepts are the principles of Object-Oriented Programming that focus on encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: bundling data and methods together in a class

    • Inheritance: creating new classes from existing ones

    • Polymorphism: ability of objects to take on many forms

    • Abstraction: hiding unnecessary details and exposing only essential features

  • Answered by AI
  • Q2. Explain about locators in selenium
  • Ans. 

    Locators in Selenium are used to identify web elements on a web page.

    • Locators are used to find and interact with web elements on a web page.

    • There are different types of locators in Selenium such as ID, Name, Class Name, Tag Name, Link Text, and Partial Link Text.

    • Locators can be used with various Selenium commands such as click(), sendKeys(), getText(), etc.

    • Using the right locator strategy is important for efficient and...

  • Answered by AI
  • Q3. Badic selenium and java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and perform well in interview

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Capgemini Interview FAQs

How many rounds are there in Capgemini Automation Test Engineer interview?
Capgemini interview process usually has 1-2 rounds. The most common rounds in the Capgemini interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Capgemini Automation Test 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 Capgemini. The most common topics and skills that interviewers at Capgemini expect are Automation Testing, QA Automation, Java, JIRA and Telecommunication.
What are the top questions asked in Capgemini Automation Test Engineer interview?

Some of the top questions asked at the Capgemini Automation Test Engineer interview -

  1. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium and code for it...read more
  2. What is assertion? What is soft assertion? What is hard asserti...read more
  3. What is TestNG? Write the methods name? Importan...read more
How long is the Capgemini Automation Test Engineer interview process?

The duration of Capgemini Automation Test Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Bare International

No Interviews

INTERVIEWS

Country Holidays Travel India

No Interviews

SALARIES

Tata Steel

INTERVIEWS

Supertron Electronics

No Interviews

INTERVIEWS

Intertek

No Interviews

JOBS

Xcel Hires Management Solutions

No Jobs

INTERVIEWS

Sterlite Technologies

No Interviews

SALARIES

Aristocrat

INTERVIEWS

Country Holidays Travel India

No Interviews

Tell us how to improve this page.

Capgemini Automation Test Engineer Interview Process

based on 36 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
View more
Capgemini Automation Test Engineer Salary
based on 1.6k salaries
₹3.5 L/yr - ₹14 L/yr
15% more than the average Automation Test Engineer Salary in India
View more details

Capgemini Automation Test Engineer Reviews and Ratings

based on 116 reviews

3.8/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.1

Salary

4.0

Job security

3.7

Company culture

2.8

Promotions

3.5

Work satisfaction

Explore 116 Reviews and Ratings
Test Automation Engineer

Bangalore / Bengaluru

4-6 Yrs

₹ 4.4-19 LPA

Automation Test Engineer- Pune

Pune,

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Automation Test Engineer

Pune,

Chennai

+1

4-9 Yrs

Not Disclosed

Explore more jobs
Consultant
55.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
50.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
46.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
20.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
20.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.7
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview