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
3.7

based on 86.5k Reviews

Filter interviews by

TCS Automation Test Engineer Interview Questions, Process, and Tips

Updated 22 Jan 2025

Top TCS Automation Test Engineer Interview Questions and Answers

  • Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program ...read more
  • Q2. 1) cucumber 2) Defects worked on, tell me about the bugs you found during testing 3) Functional Testing 4) Automation testing tools you worked on how you worked on in det ...read more
  • Q3. Which java concepts have you used in your selenium script
View all 54 questions

TCS Automation Test Engineer Interview Experiences

47 interviews found

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

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Write java program to print sum of digits from a given string eg: "abcd23"
  • Ans. 

    Java program to print sum of digits from a given string

    • Iterate through each character in the string

    • Check if the character is a digit using Character.isDigit() method

    • Convert the digit character to integer using Character.getNumericValue() method

    • Sum up all the digits found in the string

  • Answered by AI
  • Q2. Explain oops concepts used in your framework with example?
  • Ans. 

    OOPs concepts used in the framework include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance is used to create a parent-child relationship between classes. For example, a base class 'Page' can be inherited by 'HomePage' and 'LoginPage' classes.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass. For instance, a 'click' method can be implemented different...

  • Answered by AI
  • Q3. Explain polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example of compile-time polymorphism: function overloading in Java.

    • Example of runtime polymorphism: method overriding in Java

  • Answered by AI
  • Q4. Java program to print the sum of elements in string array eg: String[] arr = {"1","2","3"}
  • Ans. 

    Java program to print the sum of elements in a string array.

    • Convert each element in the string array to an integer using Integer.parseInt()

    • Sum up all the integers to get the total sum

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Selenium related question
  • Q2. Java/Python concepts
Round 2 - Behavioral 

(2 Questions)

  • Q1. Why TCS and what makes you different from others
  • Ans. 

    I chose TCS for its global presence, reputation for innovation, and opportunities for growth.

    • TCS is a global leader in IT services with a strong reputation for innovation and quality.

    • I am attracted to TCS's focus on continuous learning and development, which aligns with my career goals.

    • TCS offers diverse opportunities for growth and career advancement, which is important to me.

    • I believe my skills in automation testing ...

  • Answered by AI
  • Q2. Resume walkthrough
Round 3 - HR 

(1 Question)

  • Q1. How soon you can join
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I have a 2-week notice period at my current job.

    • I need time to wrap up my current projects before starting a new role.

    • I am excited about the opportunity and eager to join the team.

    • I can start sooner if necessary, depending on the circumstances.

  • Answered by AI

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(6 Questions)

  • Q1. Types of Locators
  • Ans. 

    Locators are used in automation testing to identify web elements on a webpage. Common types include ID, class name, name, xpath, and CSS selector.

    • ID: Unique identifier for an element

    • Class name: Name of the class attribute of an element

    • Name: Name attribute of an element

    • XPath: Path of the element in the HTML structure

    • CSS selector: Selector based on CSS attributes

  • Answered by AI
  • Q2. What is Interface
  • Ans. 

    An interface in programming defines a contract for classes to implement, specifying methods and properties that must be included.

    • Interfaces in programming are used to define a set of methods that a class must implement.

    • They provide a way to achieve abstraction and multiple inheritance in languages that do not support it.

    • Interfaces are like blueprints for classes, ensuring consistency and standardization in code.

    • Example...

  • Answered by AI
  • Q3. What is abstract class
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Cannot be instantiated directly

    • May contain abstract methods that must be implemented by subclasses

    • Can have both abstract and non-abstract methods

    • Used for defining a common interface for subclasses

  • Answered by AI
  • Q4. Absolute and relative xpath difference
  • Ans. 

    Absolute xpath starts from the root node, while relative xpath starts from any node in the DOM.

    • Absolute xpath starts with a single forward slash (/) and is more brittle as any changes in the DOM structure can break the xpath.

    • Relative xpath starts with a double forward slash (//) and is more flexible as it can start from any node in the DOM.

    • Absolute xpath is longer and less readable compared to relative xpath.

    • Example: A...

  • Answered by AI
  • Q5. Different exceptions
  • Ans. 

    Different exceptions in automation testing

    • Common exceptions include NoSuchElementException, TimeoutException, StaleElementReferenceException

    • Handle exceptions using try-catch blocks to gracefully handle errors

    • Custom exceptions can be created for specific scenarios

    • Exceptions can be logged for debugging purposes

  • Answered by AI
  • Q6. String Duplicates coding

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. API testing related questions like status codes, about postman
  • Q2. Java program on arrays
  • Ans. 

    Java program on arrays to manipulate array of strings

    • Declare an array of strings

    • Initialize the array with values

    • Access and manipulate elements in the array

  • Answered by AI

Skills evaluated in this interview

TCS interview questions for designations

 Senior Automation Test Engineer

 (1)

 Automation Test Lead

 (2)

 Sdet Automation Test Engineer

 (10)

 Test Engineer

 (43)

 Senior Automation Engineer

 (3)

 QA Automation Engineer

 (1)

 Automation Engineer

 (12)

 Senior Test Engineer

 (7)

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

(2 Questions)

  • Q1. Project Specific question
  • Q2. Basics of Java and selenium
Round 2 - Behavioral 

(2 Questions)

  • Q1. Experience in team management
  • Q2. Roles and responsibilities
Round 3 - HR 

(1 Question)

  • Q1. Compensation negotiation

Get interview-ready with Top TCS Interview Questions

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

(2 Questions)

  • Q1. Questions on selenium, Java oops concepts
  • Q2. Difficult problems u have solved in your current company
  • Ans. 

    Implemented a robust automation framework to handle dynamic web elements and data-driven testing.

    • Developed custom functions to handle dynamic element identification using XPath and CSS selectors.

    • Implemented data-driven testing using Excel sheets to easily update test data.

    • Resolved issues with handling pop-up windows and alerts during test execution.

    • Optimized test scripts for faster execution by implementing parallel te...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Scenario based questions, string operation programs

Round 2 - One-on-one 

(2 Questions)

  • Q1. Framework related questions
  • Q2. Testing methodologies
Round 3 - HR 

(1 Question)

  • Q1. Academic and work experience details

Automation Test Engineer interview

user image RD Automation Learning

posted on 12 Mar 2022

Interview experience
5
Excellent
Difficulty level
-
Process Duration
4-6 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Automation Test Process
  • Q2. Docker Kafka Selenium Rest

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn n Learn
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - walking 

(2 Questions)

  • Q1. Java coding Question
  • Q2. About selenium wait, Pom , Fage factory

TCS Interview FAQs

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

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

  1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in ...read more
  2. 1) cucumber 2) Defects worked on, tell me about the bugs you found during testi...read more
  3. Which java concepts have you used in your selenium scr...read more
How long is the TCS Automation Test Engineer interview process?

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

Tell us how to improve this page.

TCS Automation Test Engineer Interview Process

based on 45 interviews

4 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • HR Round - 1
  • HR Round - 2
View more
TCS Automation Test Engineer Salary
based on 4.2k salaries
₹1.9 L/yr - ₹10.5 L/yr
16% less than the average Automation Test Engineer Salary in India
View more details

TCS Automation Test Engineer Reviews and Ratings

based on 257 reviews

3.8/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

2.6

Salary

4.7

Job security

3.7

Company culture

2.6

Promotions

3.4

Work satisfaction

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

₹1 L/yr - ₹9 L/yr

IT Analyst
67.6k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

AST Consultant
51.3k salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Assistant System Engineer
29.9k salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

Associate Consultant
28.9k salaries
unlock blur

₹9 L/yr - ₹32 L/yr

Explore more salaries
Compare TCS with

Amazon

4.1
Compare

Wipro

3.7
Compare

Infosys

3.7
Compare

Accenture

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