Upload Button Icon Add office photos
Engaged Employer

i

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

Cognizant Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 47.6k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Cognizant QA Automation Engineer Interview Questions and Answers

Updated 11 Aug 2024

Cognizant QA Automation Engineer Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Playwright related questions
  • Q2. Scenario based questions
  • Q3. API testing and data-related
  • Q4. Difference between soft and hard assertions
  • Ans. 

    Soft assertions allow test execution to continue after a failure, while hard assertions stop the test execution immediately.

    • Soft assertions are used when you want to check multiple conditions in a test case without stopping the execution on the first failure.

    • Hard assertions are used when you want to stop the test execution immediately after a failure.

    • Soft assertions are typically used in scenarios where you want to col...

  • Answered by AI
  • Q5. How to navigate the browser
  • Ans. 

    To navigate the browser, use methods like get(), navigate().to(), navigate().back(), navigate().forward(), and navigate().refresh().

    • Use driver.get("url") to open a specific URL

    • Use driver.navigate().to("url") to navigate to a specific URL

    • Use driver.navigate().back() to navigate back to the previous page

    • Use driver.navigate().forward() to navigate forward to the next page

    • Use driver.navigate().refresh() to refresh the curr

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant QA Automation Engineer interview:
  • playwright
  • automation
Interview preparation tips for other job seekers - not received a reply from HR even I get good response from technical interview

Skills evaluated in this interview

Round 1 - Aptitude Test 
Round 2 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. What is your family background?
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic programming question like print pattern, String reverse, prime no, Palindrome string or no.
Questions on core background or previous project experience.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic knowledge on sql, Basic questions on manual testing, core java and automation questions
Round 2 - HR 

(2 Questions)

  • Q1. We will check communication
  • Q2. Why should hire you? Why it? Introduce yourself?
Round 3 - Behavioral 

(1 Question)

  • Q1. Basic knowledge, salary discussion

Interview Preparation Tips

Topics to prepare for Infosys QA Automation Engineer interview:
  • Manual Testing
  • Core Java
  • Selenium
Interview preparation tips for other job seekers - I am technically strong and communication is good. Looking for opportunity
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Technical interview and HR
Round 3 - HR 

(1 Question)

  • Q1. Technical interview and HR

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare according to the topis that you mentioned in your resume

I applied via Naukri.com and was interviewed in Mar 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Difference between set and list? Difference between throw and throws?
  • Ans. 

    Set is an unordered collection of unique elements while list is an ordered collection of elements. Throw is used to throw an exception while throws is used to declare an exception.

    • Set does not allow duplicate elements while list can have duplicates.

    • Set does not maintain the order of elements while list maintains the order.

    • Throw is used to explicitly throw an exception in a method while throws is used to declare the exc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study selenium and java in depth

I applied via Recruitment Consulltant and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Project in which i worked, Android development
  • Q2. Appium and selenium related questions
  • Q3. Sdlc and stlc basic concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic of testing, istqb certificate prefer

I was interviewed before May 2020.

Interview Questionnaire 

1 Question

  • Q1. They asked me about Software Development and Interview was done by Junior Developer.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's rude to Interview a Software QA by Developer, there is much difference between Software Automation and Software Automation Testing. IBM Employee Vishnu Priya interviewed me without basic knowledge of Software Testing and completely distracted the Interview with API Development Questions. She was dumb about Assertions in Software Testing, Assertions are a key part of Automation Testing. She was very aggressive while she was asking me the questions.
Which language QA must remember when QA worked on several tools with several languages?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is Hard assert
  • Ans. 

    Hard assert is a type of assertion in test automation that stops the test execution immediately when a failure occurs.

    • Hard assert is used to validate the expected outcome of a test case

    • If the assertion fails, the test execution is halted and marked as failed

    • It is commonly used in automated test scripts to ensure the correctness of the application under test

  • Answered by AI
  • Q2. What is soft assert
  • Ans. 

    Soft assert is a way to continue the execution of a test case even after an assertion failure.

    • Soft assert does not stop the execution of the test case when an assertion fails.

    • It is useful when you want to log the failure but continue with the remaining test steps.

    • Soft assert is commonly used in test automation frameworks like TestNG in Java.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Mar 2023. There were 4 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 - One-on-one 

(3 Questions)

  • Q1. Program to toggle string
  • Ans. 

    Program to toggle string

    • Create an empty string variable

    • Loop through each character in the input string

    • If the character is uppercase, convert it to lowercase and add to the new string

    • If the character is lowercase, convert it to uppercase and add to the new string

    • Return the new string

  • Answered by AI
  • Q2. Program to check if string is number
  • Ans. 

    Program to check if string is number

    • Use built-in functions like isdigit() or isnumeric()

    • Handle negative numbers and decimal points separately

    • Consider edge cases like leading/trailing spaces and exponential notation

  • Answered by AI
  • Q3. Swap two strings without using third
  • Ans. 

    Swap two strings without using third

    • Use XOR operator

    • Use addition and subtraction

    • Use multiplication and division

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Create alphanumeric string of given length
  • Ans. 

    To create an alphanumeric string of a given length, we can use a combination of random letters and numbers.

    • Determine the length of the string required

    • Create a list of all possible alphanumeric characters

    • Randomly select characters from the list and append them to the string until the desired length is reached

  • Answered by AI
  • Q2. Close selected window and keep rest
Round 4 - One-on-one 

(1 Question)

  • Q1. Describe framework
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop and maintain software applications.

    • A framework provides a structure for organizing code and building applications

    • It includes pre-written code libraries, modules, and functions that can be reused

    • Frameworks can be specific to a programming language or technology

    • Examples include Selenium for web testing, Robot Framework for automation testing, and Dj

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Framework Agile Selenium Cucumber Java Day to day activities TestNG

Cognizant Interview FAQs

How many rounds are there in Cognizant QA Automation Engineer interview?
Cognizant interview process usually has 1-2 rounds. The most common rounds in the Cognizant interview process are Aptitude Test, HR and Technical.
What are the top questions asked in Cognizant QA Automation Engineer interview?

Some of the top questions asked at the Cognizant QA Automation Engineer interview -

  1. difference between soft and hard asserti...read more
  2. how to navigate the brow...read more
  3. playwright related questi...read more

Tell us how to improve this page.

Cognizant QA Automation Engineer Salary
based on 147 salaries
₹3 L/yr - ₹11.9 L/yr
At par with the average QA Automation Engineer Salary in India
View more details

Cognizant QA Automation Engineer Reviews and Ratings

based on 9 reviews

4.2/5

Rating in categories

4.4

Skill development

4.5

Work-Life balance

3.9

Salary & Benefits

4.6

Job Security

4.1

Company culture

3.5

Promotions/Appraisal

4.0

Work Satisfaction

Explore 9 Reviews and Ratings
Associate
72.7k salaries
unlock blur

₹5.1 L/yr - ₹16 L/yr

Programmer Analyst
55.4k salaries
unlock blur

₹2.4 L/yr - ₹9.7 L/yr

Senior Associate
48.3k salaries
unlock blur

₹8.9 L/yr - ₹27 L/yr

Senior Processing Executive
28.6k salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Technical Lead
17.6k salaries
unlock blur

₹5.9 L/yr - ₹24 L/yr

Explore more salaries
Compare Cognizant with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Accenture

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview