AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
3.7

based on 46.7k Reviews

Play video Play video Video summary
  • About
  • Reviews
    46.7k
  • Salaries
    4.6L
  • Interviews
    5.1k
  • Jobs
    2k
  • Benefits
    4.2k
  • Photos
    41
  • Posts
    41

Filter interviews by

Capgemini Senior Automation Test Engineer Interview Questions and Answers

Updated 10 Oct 2024

22 Interview questions

A Senior Automation Test Engineer was asked
Q. What are your current and expected CTC?
Ans. 

I prefer not to disclose my current CTC. As for my expected CTC, I am looking for a competitive salary based on my experience and skills.

  • I am open to negotiation based on the job responsibilities and company's budget

  • I have researched the market rates for similar positions and have a realistic expectation

  • I am looking for a salary that reflects my experience and skills

  • I am also interested in other benefits such as h...

A Senior Automation Test Engineer was asked
Q. How do you run a test suite using the Robot Framework command line?
Ans. 

To run a test suite using robotframework command line, use the 'robot' command followed by the path to the test suite file.

  • Open the command prompt or terminal

  • Navigate to the directory containing the test suite file

  • Enter the command 'robot' followed by the name of the test suite file

  • Add any additional options or arguments as needed

  • Press enter to execute the command

  • Example: robot my_test_suite.robot

  • Example with opti...

Senior Automation Test Engineer Interview Questions Asked at Other Companies

asked in Innominds Software
Q1. (1) write a list comprehension to print a list from 1 to 10 (2) w ... read more
View answers (2)
asked in Capgemini
Q2. What are the different data types in Python?
View answers (2)
asked in Capgemini
Q3. how do you concatenate a string and integer? is it possible ?
View answer (1)
asked in Capgemini
Q4. what is xpath ? How do you find an element ? what is the differen ... read more
View answer (1)
asked in Capgemini
Q5. If some data is not found on the page, do a page refresh. How do ... read more
View answer (1)
View All
A Senior Automation Test Engineer was asked
Q. How do you generate random data/numbers in Python?
Ans. 

Python provides random module to generate random data and numbers.

  • Import random module

  • Use random.randint() to generate random integer within a range

  • Use random.choice() to select a random element from a list

  • Use random.random() to generate a random float between 0 and 1

  • Use random.uniform() to generate a random float within a range

A Senior Automation Test Engineer was asked
Q. How do you open a file and read repeating words from it?
Ans. 

To open a file and read repeating words, use file handling and string manipulation techniques.

  • Open the file using file handling techniques in the programming language of your choice.

  • Read the contents of the file and store it in a string variable.

  • Split the string into an array of words using a delimiter such as space or comma.

  • Loop through the array and use a dictionary or hash table to count the frequency of each w...

What people are saying about Capgemini

View All
a senior software engineer
5d (edited)
Need Insights – Choosing Between Companies
Hi all, Currently have offers from Capgemini, Tech Mahindra, LTIMindTree, Zen&Art, CitiusTech, Nagarro & Persistent. Before making a decision, I need some clarity: 1. Do you get admin access on laptop or need IT for every install? 2. Are office hours flexible or fixed 9 AM login? 3. Is 9 hrs of active laptop time mandatory? 4. What's the leave policy — casual or strict approval? 5. Do projects use the latest technologies or older versions? Thanks in advance!
Got a question about Capgemini?
Ask anonymously on communities.
A Senior Automation Test Engineer was asked
Q. Write an SQL query to find the names of employees that start with ‘A’.
Ans. 

SQL query to find names of employees starting with 'A'

  • Use the SELECT statement to retrieve data from the employee table

  • Use the LIKE operator to match the names starting with 'A'

  • Use the % wildcard to match any number of characters after 'A'

A Senior Automation Test Engineer was asked
Q. What is a full join?
Ans. 

Full join is a type of SQL join that returns all the rows from both tables, matching rows from both tables and nulls where there is no match.

  • Full join is also known as a full outer join.

  • It is used to combine data from two tables where some of the data may not match.

  • The result set includes all the rows from both tables, with nulls where there is no match.

  • Full join is represented by the keyword 'FULL OUTER JOIN' in ...

A Senior Automation Test Engineer was asked
Q. What are the different locators supported in Selenium?
Ans. 

Selenium supports various locators such as ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector and XPath.

  • ID locator is the most efficient and reliable locator

  • Name locator is used for locating elements by their name attribute

  • Class Name locator is used for locating elements by their class attribute

  • Tag Name locator is used for locating elements by their tag name

  • Link Text locator is used for loc...

Are these interview questions helpful?
A Senior Automation Test Engineer was asked
Q. What is the difference between break, continue, and pass statements?
Ans. 

Break, continue and pass are control statements used in loops. Break terminates the loop, continue skips an iteration and pass does nothing.

  • Break is used to terminate a loop when a certain condition is met

  • Continue is used to skip an iteration of a loop when a certain condition is met

  • Pass is used as a placeholder when a statement is required syntactically but no action is needed

A Senior Automation Test Engineer was asked
Q. If some data is not found on the page, do a page refresh. How do you validate the data after the page refresh in Selenium?
Ans. 

To validate data after page refresh in Selenium, we can refresh the page and then use explicit wait to validate the data.

  • Refresh the page using driver.navigate().refresh() method

  • Use explicit wait to wait for the element to be visible on the page

  • Validate the data using getText() or getAttribute() method

  • Example: driver.navigate().refresh(); WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedCondi...

A Senior Automation Test Engineer was asked
Q. What is the difference between an array and a list?
Ans. 

Arrays are fixed in size, while lists can grow or shrink dynamically.

  • Arrays are a collection of elements of the same data type, while lists can contain elements of different data types.

  • Arrays are accessed using an index, while lists are accessed using an iterator.

  • Arrays are faster for accessing elements, while lists are faster for inserting or deleting elements.

  • Examples of arrays include int[] and char[], while ex...

1 2 3

Capgemini Senior Automation Test Engineer Interview Experiences

5 interviews found

Senior Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Coding sheet was given with options to choose

Round 2 - Technical 

(1 Question)

  • Q1. Questions on Java, framework and Selenium were asked
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Questions on Selenium CSS and xpath selector and Automation test reports are asked
  • Add your answer
Anonymous

Senior Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 21 May 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic java,api,framework,pom level questions
  • Add your answer
Anonymous

Senior Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Apr 2023

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

I applied via Naukri.com and was interviewed in Oct 2022. 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 - Technical 

(21 Questions)

  • Q1. What are the different types of datatypes in python?
  • Ans. 

    Python has several built-in datatypes including numeric, sequence, and mapping types.

    • Numeric types include integers, floating-point numbers, and complex numbers.

    • Sequence types include lists, tuples, and range objects.

    • Mapping types include dictionaries.

    • Other datatypes include boolean, bytes, and sets.

  • Answered by AI
    View 1 more answer
  • Q2. How do you concatenate a string and integer? is it possible ?
  • Ans. 

    Yes, it is possible to concatenate a string and integer using type conversion.

    • Convert the integer to a string using str() function and then concatenate with the string.

    • Use format() method to insert the integer value into the string.

    • Use f-strings to directly insert the integer value into the string.

  • Answered by AI
    Add your answer
  • Q3. What is xpath ? How do you find an element ? what is the difference between absolute xpath and relative xpath?
  • Ans. 

    XPath is a language used to locate elements in an XML or HTML document. Absolute and relative XPaths differ in their starting point.

    • XPath is used to navigate through elements and attributes in an XML or HTML document

    • Elements can be located using absolute or relative XPaths

    • Absolute XPaths start from the root node and are more specific but less flexible

    • Relative XPaths start from the current node and are more flexible but...

  • Answered by AI
    Add your answer
  • Q4. What are different locators supported in selenium?
  • Ans. 

    Selenium supports various locators such as ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector and XPath.

    • ID locator is the most efficient and reliable locator

    • Name locator is used for locating elements by their name attribute

    • Class Name locator is used for locating elements by their class attribute

    • Tag Name locator is used for locating elements by their tag name

    • Link Text locator is used for locating...

  • Answered by AI
    Add your answer
  • Q5. What is the difference between findelement and findelements?
  • Ans. 

    findelement returns the first matching element while findelements returns a list of all matching elements.

    • findelement is used to locate the first matching element on a web page

    • findelements is used to locate all matching elements on a web page

    • findelement throws NoSuchElementException if no matching element is found

    • findelements returns an empty list if no matching element is found

  • Answered by AI
    Add your answer
  • Q6. What are the exceptions in selenium?
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution.

    • Some common exceptions in Selenium are NoSuchElementException, TimeoutException, StaleElementReferenceException, and ElementNotVisibleException.

    • NoSuchElementException occurs when an element cannot be found on the page.

    • TimeoutException occurs when a command takes too long to execute.

    • StaleElementReferenceException occurs when an element is no longer attac...

  • Answered by AI
    Add your answer
  • Q7. How do you select a value from dropdown in selenium?
  • Ans. 

    To select a value from dropdown in Selenium, use the Select class and its methods.

    • Locate the dropdown element using any of the locators like ID, name, class name, etc.

    • Create an object of the Select class and pass the dropdown element as a parameter.

    • Use the Select class methods like selectByVisibleText(), selectByValue(), or selectByIndex() to select the desired option.

    • Finally, use the assert statement to verify if the ...

  • Answered by AI
    Add your answer
  • Q8. How do you achieve synchronization? what are the differences between the synchronization ways?
  • Ans. 

    Synchronization is the process of coordinating the execution of multiple threads to ensure proper order of execution.

    • Synchronization can be achieved using techniques like locks, semaphores, and monitors.

    • Locks are used to ensure that only one thread can access a shared resource at a time.

    • Semaphores are used to control access to a shared resource by limiting the number of threads that can access it at once.

    • Monitors are u...

  • Answered by AI
    Add your answer
  • Q9. What is the difference between break continue and pass?
  • Ans. 

    Break, continue and pass are control statements used in loops. Break terminates the loop, continue skips an iteration and pass does nothing.

    • Break is used to terminate a loop when a certain condition is met

    • Continue is used to skip an iteration of a loop when a certain condition is met

    • Pass is used as a placeholder when a statement is required syntactically but no action is needed

  • Answered by AI
    Add your answer
  • Q10. What is full join ?
  • Ans. 

    Full join is a type of SQL join that returns all the rows from both tables, matching rows from both tables and nulls where there is no match.

    • Full join is also known as a full outer join.

    • It is used to combine data from two tables where some of the data may not match.

    • The result set includes all the rows from both tables, with nulls where there is no match.

    • Full join is represented by the keyword 'FULL OUTER JOIN' in SQL.

    • E...

  • Answered by AI
    Add your answer
  • Q11. Write a Query to Find Second Highest Salary in SQL
  • Ans. 

    Query to find second highest salary in SQL

    • Use the ORDER BY clause to sort the salaries in descending order

    • Use the LIMIT clause to select the second highest salary

    • Use a subquery to exclude the highest salary from the results

  • Answered by AI
    Add your answer
  • Q12. How to fetch 1st 5 records in sql?
  • Ans. 

    To fetch 1st 5 records in SQL, use the LIMIT clause.

    • Use the SELECT statement to specify the columns to retrieve.

    • Use the FROM clause to specify the table to retrieve data from.

    • Use the LIMIT clause to specify the number of records to retrieve.

    • The syntax is: SELECT column1, column2, ... FROM table_name LIMIT 5;

    • The first 5 records will be returned.

  • Answered by AI
    Add your answer
  • Q13. How do you copy a table in mysql?
  • Ans. 

    To copy a table in MySQL, use the CREATE TABLE statement with the SELECT statement.

    • Use the CREATE TABLE statement with the SELECT statement to copy a table.

    • Specify the new table name after the CREATE TABLE statement.

    • Specify the original table name after the SELECT statement.

    • Add any additional conditions or clauses as needed.

    • Example: CREATE TABLE new_table SELECT * FROM original_table WHERE condition;

  • Answered by AI
    Add your answer
  • Q14. How do you fetch unique elements from a column?
  • Ans. 

    To fetch unique elements from a column, use the DISTINCT keyword in SQL.

    • Use the SELECT statement with the DISTINCT keyword.

    • Specify the column name from which you want to fetch unique elements.

    • Example: SELECT DISTINCT column_name FROM table_name;

    • You can also use GROUP BY clause to group the unique elements based on another column.

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name;

  • Answered by AI
    Add your answer
  • Q15. Write an SQL query to find names of employees start with ‘A’?
  • Ans. 

    SQL query to find names of employees starting with 'A'

    • Use the SELECT statement to retrieve data from the employee table

    • Use the LIKE operator to match the names starting with 'A'

    • Use the % wildcard to match any number of characters after 'A'

  • Answered by AI
    Add your answer
  • Q16. How do you open a file and read repeating words from a file ?
  • Ans. 

    To open a file and read repeating words, use file handling and string manipulation techniques.

    • Open the file using file handling techniques in the programming language of your choice.

    • Read the contents of the file and store it in a string variable.

    • Split the string into an array of words using a delimiter such as space or comma.

    • Loop through the array and use a dictionary or hash table to count the frequency of each word.

    • P...

  • Answered by AI
    Add your answer
  • Q17. How do you generate random emails in python? gmail.com is constant
  • Ans. 

    Generating random emails in Python with constant domain

    • Use the random module to generate random strings for the username part of the email

    • Combine the random username with the constant domain name

    • Ensure the generated email is unique if required

  • Answered by AI
    View 1 more answer
  • Q18. How do you generate random data / number in python ?
  • Ans. 

    Python provides random module to generate random data and numbers.

    • Import random module

    • Use random.randint() to generate random integer within a range

    • Use random.choice() to select a random element from a list

    • Use random.random() to generate a random float between 0 and 1

    • Use random.uniform() to generate a random float within a range

  • Answered by AI
    Add your answer
  • Q19. What is the difference between array and a list ?
  • Ans. 

    Arrays are fixed in size, while lists can grow or shrink dynamically.

    • Arrays are a collection of elements of the same data type, while lists can contain elements of different data types.

    • Arrays are accessed using an index, while lists are accessed using an iterator.

    • Arrays are faster for accessing elements, while lists are faster for inserting or deleting elements.

    • Examples of arrays include int[] and char[], while example...

  • Answered by AI
    Add your answer
  • Q20. How do you run a test suite using robotframework command line ?
  • Ans. 

    To run a test suite using robotframework command line, use the 'robot' command followed by the path to the test suite file.

    • Open the command prompt or terminal

    • Navigate to the directory containing the test suite file

    • Enter the command 'robot' followed by the name of the test suite file

    • Add any additional options or arguments as needed

    • Press enter to execute the command

    • Example: robot my_test_suite.robot

    • Example with options: ...

  • Answered by AI
    Add your answer
  • Q21. If some data is not found on the page, do page refresh and how do you validate a data after page refresh in selenium?
  • Ans. 

    To validate data after page refresh in Selenium, we can refresh the page and then use explicit wait to validate the data.

    • Refresh the page using driver.navigate().refresh() method

    • Use explicit wait to wait for the element to be visible on the page

    • Validate the data using getText() or getAttribute() method

    • Example: driver.navigate().refresh(); WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions...

  • Answered by AI
    Add your answer
Round 3 - HR 

(3 Questions)

  • Q1. What are your roles and responsibilities?
  • Ans. 

    As a Senior Automation Test Engineer, my roles and responsibilities include designing and implementing automated test scripts, identifying and reporting software defects, and collaborating with cross-functional teams to ensure high-quality software delivery.

    • Designing and implementing automated test scripts using tools like Selenium, Appium, or JUnit

    • Identifying and reporting software defects and working closely with dev...

  • Answered by AI
    Add your answer
  • Q2. What is your current and expected CTC ?
  • Ans. 

    I prefer not to disclose my current CTC. As for my expected CTC, I am looking for a competitive salary based on my experience and skills.

    • I am open to negotiation based on the job responsibilities and company's budget

    • I have researched the market rates for similar positions and have a realistic expectation

    • I am looking for a salary that reflects my experience and skills

    • I am also interested in other benefits such as health...

  • Answered by AI
    Add your answer
  • Q3. Are you willing to relocate to Hyderabad ?
  • Ans. 

    Yes, I am willing to relocate to Hyderabad.

    • I am open to new opportunities and experiences in different locations.

    • I have researched about Hyderabad and I am excited about the city's culture and opportunities.

    • I am ready to adapt to a new environment and build a life in Hyderabad.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Capgemini Senior Automation Test Engineer interview:
  • Python
  • Selenium
  • MySQL
  • Linux
Interview preparation tips for other job seekers - Prepare Basics.
Techincal went on friday, HR called immediately on Monday. She took HR round and told I was selected but I dint hear back from the company. I've sent multiple emails and messages but no response.

Skills evaluated in this interview

Anonymous

Senior Automation Test Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. String related programs
  • Add your answer
  • Q2. Logical programming
  • Add your answer
Anonymous

Senior Automation Test Engineer Interview Questions & Answers

user image Anil Rautela

posted on 11 May 2023

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

I appeared for an interview before May 2022.

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 

(1 Question)

  • Q1. About your past experience. Primary skill sets. Salary Part. Notice Period.
  • Ans. Should be confident while having conversation. That's It. It's just a discussion.
  • Answered by Anil Rautela
    Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Automation, Programming Language and Coding
  • Ans. Basic of automation tool( Selenium/Protractor - any of these , in which you have experience) and language should be very clear. Simple Coding Question.
  • Answered by Anil Rautela
    Add your answer

Interview Preparation Tips

Topics to prepare for Capgemini Senior Automation Test Engineer interview:
  • Selenium
  • Java
  • Python
  • simple coding questions
Interview preparation tips for other job seekers - Be Confident.
Basics of your primary skill sets should be very clear and to the point. If you don't know simply deny.
Prepare basic famous programs.
Anonymous

Interview questions from similar companies

company Logo

Senior Automation Test Engineer Interview Questions & Answers

HCLTech user image Anonymous

posted on 24 Jul 2021

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I attended interview on TOSCA Automation tool. Interviewer was very cool.. He asked basic questions about tosca tool usage but questions are some what tricky.. If we prepare like some interview questions f...
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - On any tool ur attending interview meanz you shoudl be having some handson usage otherwise it js very difficult to crack the interview
Anonymous
company Logo

Senior Automation Test Engineer Interview Questions & Answers

TCS user image Anonymous

posted on 18 Aug 2021

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

Interview Questionnaire 

1 Question

  • Q1. Basic selenium questions like wait types,handling dropdown,assert&verify difference, limitations of selenium,what framework have been used,xpath types
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm& present confidently what you know
Anonymous
company Logo

Senior Automation Test Engineer Interview Questions & Answers

Wipro user image Anonymous

posted on 18 Feb 2021

Interview Questionnaire 

1 Question

  • Q1. Core java, Selenium, Restassured
  • Add your answer
Anonymous
company Logo

Senior Automation Test Engineer Interview Questions & Answers

IBM user image Anonymous

posted on 4 Aug 2022

I applied via Referral and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was a game based cognitive test

Round 2 - Coding Test 

It was hacker rank coding test with some multiple choice questions and two programming questions

Round 3 - Technical 

(1 Question)

  • Q1. Basic interview questions
  • Add your answer
Round 4 - Behavioral 

(1 Question)

  • Q1. Questions on project worked
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Going through basics is very important. Prepare for everything you have mentioned on the resume.
Anonymous
company Logo

Senior Automation Test Engineer Interview Questions & Answers

IBM user image Anonymous

posted on 8 Jul 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Selenium and TestNg concepts
  • Add your answer
  • Q2. Java program logics
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Selenium framework
  • Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. Convenient timings and job location
  • Add your answer
  • Q2. Current pay and expected pay
  • Add your answer
Anonymous
More about working at Capgemini
golden leaf award AmbitionBox awards

#19 Top Rated Mega Company - 2024

golden leaf award
golden leaf award AmbitionBox awards

#5 Top Rated IT/ITES Company - 2024

golden leaf award
  • HQ - Paris, France
  • IT Services & Consulting
  • 1 Lakh+ Employees (India)
  • Analytics & KPO
  • Banking
  • Software Product

Capgemini Interview FAQs

How many rounds are there in Capgemini Senior Automation Test Engineer interview?
Capgemini interview process usually has 2-3 rounds. The most common rounds in the Capgemini interview process are Technical, Resume Shortlist and HR.
How to prepare for Capgemini Senior 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 Agile Methodology, Automation, Core Java, Defect tracking and SDLC.
What are the top questions asked in Capgemini Senior Automation Test Engineer interview?

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

  1. what are the different types of datatypes in pyth...read more
  2. how do you concatenate a string and integer? is it possibl...read more
  3. what is xpath ? How do you find an element ? what is the difference between ab...read more

Tell us how to improve this page.

Capgemini Interviews By Designations

  • Capgemini Analyst Interview Questions
  • Capgemini Consultant Interview Questions
  • Capgemini Software Engineer Interview Questions
  • Capgemini Senior Consultant Interview Questions
  • Capgemini Associate Consultant Interview Questions
  • Capgemini Software Developer Interview Questions
  • Capgemini Senior Analyst Interview Questions
  • Capgemini Senior Software Engineer Interview Questions
  • Show more
  • Capgemini Process Associate Interview Questions
  • Capgemini Senior Associate Interview Questions

Overall Interview Experience Rating

3.8/5

based on 5 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 75%
More than 8 weeks 25%
View more

Top Skills for Capgemini Senior Automation Test Engineer

Software Testing Interview Questions & Answers
250 Questions
SQL Interview Questions & Answers
250 Questions

Senior Automation Test Engineer Interview Questions from Similar Companies

Accenture
Accenture Senior Automation Test Engineer Interview Questions
3.7
 • 4 Interviews
Wipro
Wipro Senior Automation Test Engineer Interview Questions
3.7
 • 3 Interviews
Cognizant
Cognizant Senior Automation Test Engineer Interview Questions
3.7
 • 3 Interviews
HCLTech
HCLTech Senior Automation Test Engineer Interview Questions
3.5
 • 3 Interviews
IBM
IBM Senior Automation Test Engineer Interview Questions
3.9
 • 3 Interviews
TCS
TCS Senior Automation Test Engineer Interview Questions
3.6
 • 1 Interview
Infosys
Infosys Senior Automation Test Engineer Interview Questions
3.6
 • 1 Interview
Tech Mahindra
Tech Mahindra Senior Automation Test Engineer Interview Questions
3.5
 • 1 Interview
Genpact
Genpact Senior Automation Test Engineer Interview Questions
3.7
 • 1 Interview
View all
Capgemini Senior Automation Test Engineer Salary
based on 128 salaries
₹4.6 L/yr - ₹17.7 L/yr
25% less than the average Senior Automation Test Engineer Salary in India
View more details

Capgemini Senior Automation Test Engineer Reviews and Ratings

based on 8 reviews

3.1/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

1.8

Salary

3.6

Job security

3.6

Company culture

1.8

Promotions

2.2

Work satisfaction

Explore 8 Reviews and Ratings
Capgemini Salaries in India
Consultant
58.8k salaries
unlock blur

₹8.9 L/yr - ₹16.5 L/yr

Associate Consultant
51.1k salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Senior Consultant
50.1k salaries
unlock blur

₹12.1 L/yr - ₹21 L/yr

Senior Analyst
22.3k salaries
unlock blur

₹3.1 L/yr - ₹7.6 L/yr

Senior Software Engineer
21.6k salaries
unlock blur

₹4.7 L/yr - ₹13 L/yr

Explore more salaries
Compare Capgemini with
Wipro

Wipro

3.7
Compare
Accenture

Accenture

3.7
Compare
Cognizant

Cognizant

3.7
Compare
TCS

TCS

3.6
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Capgemini Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter