Upload Button Icon Add office photos
Engaged Employer

i

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

TCS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TCS Automation Tester Interview Questions, Process, and Tips

Updated 14 Mar 2025

Top TCS Automation Tester Interview Questions and Answers

  • Q1. How to mouse hover an element? Write Xpath for an element? How to run test parallel? Explain automation test framework that you worked in? What is data provider in testng ...read more
  • Q2. Explain Your cucumber framework
  • Q3. Oops concepts in java

TCS Automation Tester Interview Experiences

7 interviews found

Automation Tester Interview Questions & Answers

user image Maharshi Kandivanam

posted on 5 Jan 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain Your cucumber framework
  • Ans. 

    Cucumber framework is a BDD tool that allows automation testing using plain English syntax.

    • Cucumber framework uses Gherkin syntax to write test scenarios in plain English

    • It allows collaboration between technical and non-technical team members

    • Cucumber integrates with various programming languages like Java, Ruby, etc.

    • It supports parallel execution of test scenarios

    • Cucumber generates detailed reports for test results

  • Answered by AI
  • Q2. Shedule a Jenkins job for 6 am every sat and sunday
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. It was basic technical questions like xpath
Round 2 - Coding Test 

You are asked to write a code using loop

Round 3 - HR 

(1 Question)

  • Q1. Qualification and other tcs related questions

Automation Tester Interview Questions Asked at Other Companies

Q1. 1)Diffrence Between sanity and Smoke 2)What is regression Testing ... read more
asked in TCS
Q2. How to mouse hover an element? Write Xpath for an element? How to ... read more
Q3. How to validate that the URL loaded is correct or not?
asked in Deloitte
Q4. There is a table of students having column status with either pas ... read more
Q5. write the dynamic Xpath for the Date element in the cleartrip web ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Write a code for BDD framework

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain about your framework
  • Ans. 

    My framework is a data-driven framework using Selenium and TestNG for automated testing.

    • Data-driven framework allows for separating test scripts from test data

    • Uses Selenium for web automation and TestNG for test execution and reporting

    • Supports parallel execution for faster test runs

  • Answered by AI

TCS interview questions for designations

 Selenium Automation Tester

 (3)

 Uft Automation Tester

 (1)

 Senior Automation Tester

 (1)

 Tester

 (6)

 Software Tester

 (23)

 QA Tester

 (6)

 ETL Tester

 (5)

 Manual Tester

 (3)

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is STLC
  • Q2. What is BDD
  • Q3. What is Cucumber

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. About selenium Few concepts from Java Majority from work experience
  • Q2. How to mouse hover an element? Write Xpath for an element? How to run test parallel? Explain automation test framework that you worked in? What is data provider in testng? What is collections in Java? Abou...
  • Ans. 

    Answers to common questions asked in an Automation Tester interview.

    • To mouse hover an element, you can use Actions class in Selenium WebDriver.

    • Xpath for an element can be written using various attributes like id, class, etc.

    • To run tests parallel in TestNG, you can use 'parallel' attribute in testng.xml file.

    • Automation test framework I worked in was based on Page Object Model design pattern.

    • Data provider in TestNG is us...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Better come to TCS after 6-8 years of experience. Work culture is not good. You rarely get chance to work on new technology. It is a best company to come on the later stage of your career.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Selenium exceptions Popup handling in selenium Dropdown handing POM Driver initialization in selenium
  • Q2. Oops concepts in java
  • Ans. 

    Oops concepts in Java refer to Object-Oriented Programming principles like Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Encapsulation: Bundling of data with the methods that operate on that data.

    • Abstraction: Hiding the implementatio...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Discussions about salary & ID proof verification.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about the details in your resume.

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Coding on heap sort
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort works by first building a heap from the input array.

    • Then it repeatedly extracts the maximum element from the heap, and places it at the end of the sorted array.

    • The heap is then updated to exclude the extracted element, and the process is repeated until the heap is empty.

    • Heap sort has a worst-case and average time complexi...

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 4 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1.  I was asked to introduce about myself
  • Q2. I was asked about my final year project work and all its pinpoint details
  • Q3. I was asked about how the company would be benefitted from the project that I have done .
  • Q4. Where do you see yourself after five years, working at this company
  • Q5. What are Ur extra curricular activities
  • Q6. Do you read books ,articles or watch documentaries
  • Q7. Did you participate in any college events

Interview Preparation Tips

Interview preparation tips for other job seekers - My advice is to my junior batches is that first of all never get stressed before going in, one thing I can say from my experience is that it is very easy to get into Infosys if you pass the aptitude test that they give.
Interview will be very easy to attend

TCS Interview FAQs

How many rounds are there in TCS Automation Tester interview?
TCS interview process usually has 1-2 rounds. The most common rounds in the TCS interview process are Technical, HR and Coding Test.
How to prepare for TCS Automation Tester 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 TCS. The most common topics and skills that interviewers at TCS expect are Automation Testing, Selenium, Java, Cucumber and JMeter.
What are the top questions asked in TCS Automation Tester interview?

Some of the top questions asked at the TCS Automation Tester interview -

  1. How to mouse hover an element? Write Xpath for an element? How to run test para...read more
  2. Explain Your cucumber framew...read more
  3. Oops concepts in j...read more

Tell us how to improve this page.

TCS Automation Tester Interview Process

based on 7 interviews

1 Interview rounds

  • Technical Round
View more
TCS Automation Tester Salary
based on 794 salaries
₹2.2 L/yr - ₹9.2 L/yr
10% less than the average Automation Tester Salary in India
View more details

TCS Automation Tester Reviews and Ratings

based on 61 reviews

4.0/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

3.0

Salary

4.7

Job security

3.8

Company culture

2.6

Promotions

3.7

Work satisfaction

Explore 61 Reviews and Ratings
System Engineer
1.1L salaries
unlock blur

₹1 L/yr - ₹9 L/yr

IT Analyst
66.2k salaries
unlock blur

₹5 L/yr - ₹16 L/yr

AST Consultant
51.9k salaries
unlock blur

₹8 L/yr - ₹25.1 L/yr

Associate Consultant
30.3k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Assistant System Engineer
29.8k salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Explore more salaries
Compare TCS with

Amazon

4.0
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

Accenture

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