Upload Button Icon Add office photos

Filter interviews by

CVS Health Sdet Automation Test Engineer Interview Questions and Answers for Experienced

Updated 18 Jan 2024

CVS Health Sdet Automation Test Engineer Interview Experiences for Experienced

1 interview found

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

(2 Questions)

  • Q1. DATA base sql query, Java, Selenium, Cypress
  • Q2. AWS, Jenkins, Rest API

Interview questions from similar companies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. How to run your automated test case in jenkins and its configuration, How to automate DB testing, how do you perform localization testing
  • Ans. 

    To run automated test cases in Jenkins, configure DB testing, and perform localization testing

    • To run automated test cases in Jenkins, create a Jenkins job and configure it to trigger the automation test suite

    • For DB testing automation, use tools like Selenium WebDriver to interact with the database and verify data integrity

    • For localization testing, use tools like Selenium WebDriver to test the application with different...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basics maths and reasoning and they will give you one topic based on that you have write story with 200 words with the given time

Round 2 - Technical 

(3 Questions)

  • Q1. What is OOPS ??
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data in the form of fields (attributes) and code in the form of procedures (methods).

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Encapsulation refers to the bundling of data with the methods that operate on that data.

    • Inheritance allows...

  • Answered by AI
  • Q2. What is class and variable
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming, while a variable is a container for storing data.

    • A class defines the properties and behaviors of objects, while a variable holds a value that can be changed or manipulated.

    • Classes can be used to create multiple instances of objects with the same properties and behaviors.

    • Variables can be of different data types such as int, string, boolean, etc.

    • ...

  • Answered by AI
  • Q3. Difference between println and print
  • Ans. 

    println adds a new line after printing, while print does not

    • println adds a new line character at the end of the output

    • print does not add a new line character, so the next output will be on the same line

    • Example: println('Hello') will print 'Hello' on a new line, while print('Hello') will print 'Hello' on the same line

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

1. Explain about framework architecture and from that all questions derived. asked to write diagram and explain the structure.
2. Difference between class variable and instance variable.
3. what is ITestListener why used and when used in framework.
4. architecture of selenium 4 (geckodriver, chromium driver)
5. what is BDD and cucumber, how both are related to.
6. which kind of framework you go, either POM or Page factory for with testNg/junit?
7. asked to write query on sql joins and how you fetch the second lowest of salary from each department.
8. DDL, DML statements.
9. pathquery and query parameters differences(API)
10. How the responses you are validating in automation framework for Json response file.
11. status code of Https
12. serialization and deserialization difference
13. String Builder, String Buffer and String difference? which is better and which is safe to use.
14. Dropdown in selenium how you handle, how to check which is already selected?
15. multiple data provider in testng and how you pass parameter and how you retrive from excel sheet? Asked to write code!
16.what is flaky testing?
17.Asked to write first code of JDBC connecting establishment with framework.
18. Code execution: input ="aabbabcbb"; output = a:3 , b:5, c:1 like this if they give name also it should count. Tip : HashMap you can write the code.
19. Code execution: a[]={1,2,3,4,0,0,0} b={5,6,7} output need to print as remove all 0's from first array and replace 1,2,3,4 with 5,6,7 some crazy questions.
20. Git cmds and CI/CD tool.

Round 2 - Coding Test 

1. asked about architecture and where you used oops concepts?
2. abstract class and interfaces
3. select drop down all options
4. find scrape links from webpage write the code
5. asked for writing xpath for any element random website.
6. asked about following-sibling, descendent and preceding-sibling, normalise-space locators.
7. jdbc connection code.
8. API JSON file - how you done validation in automation testing.

Round 3 - Technical 

(1 Question)

  • Q1. Why team lead position you have not taken till now and is their any managerial skills you are lacking on What kind of projects you worked on water fall model agile team You are only individual contributor?...
  • Ans. 

    I have not pursued a team lead position because I have been focused on honing my technical skills. I have experience working on projects in both waterfall and agile methodologies.

    • I have chosen to focus on improving my technical skills as an individual contributor rather than taking on a managerial role.

    • I have worked on projects using both waterfall and agile methodologies, adapting to the needs of the team and project.

    • ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About experience and studies Compensation discussed. Need all the exp letters and years

Interview Preparation Tips

Interview preparation tips for other job seekers - It was one day process and shortlisted drive. But it was huge number people for one profile.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked about jenkins

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

Round 1 - Technical 

(1 Question)

  • Q1. They asked to write SQL query of group ,join ,max salary etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Hands on SQL query experience require for etl testing

I applied via Campus Placement and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java: Reverse a String, array, abstraction, interface, sum of digits of number

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics on Java and testing concepts

Interview Questionnaire 

1 Question

  • Q1. OTN/DWDM,SDH,GMPLS,EMS,NMS,ROADM,feature testing,system testing,Simulator,Testcases,Bug tracker.

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Java program to find duplicate elements in string using an array
  • Ans. 

    Java program to find duplicate elements in string using an array

    • Create an array to store characters

    • Loop through the string and check if the character is already in the array

    • If it is, then it is a duplicate

    • Print out the duplicate characters

  • Answered by AI
  • Q2. 2. How to deal with dynamic drop down in Selenium/ Appium
  • Ans. 

    Dealing with dynamic drop down in Selenium/Appium

    • Identify the parent element of the drop down

    • Use findElements() method to get all the child elements

    • Iterate through the child elements and select the desired option

    • Use wait() method to handle dynamic loading of options

    • Use Select class for handling drop downs with select tag

    • For non-select tag drop downs, use click() method to open the drop down and select the option

  • Answered by AI
  • Q3. 3. Oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed remotely in September 2020 for Appium related position. So if you are going to give interview on Appium/ selenium then prepared well on appium/ selenium. Learn all technical concepts from Appium like how to scroll, swipe, tap. Then how to deal with hybrid appliacations. Work on locators for android and IOS. Work on client library that you are using for automation (e.g Java). Make yourself technically stronger.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java Oops concepts,Strings,exceptions,Collections,Selenium concepts,java programs,sql queries

CVS Health Interview FAQs

How many rounds are there in CVS Health Sdet Automation Test Engineer interview for experienced candidates?
CVS Health interview process for experienced candidates usually has 1 rounds. The most common rounds in the CVS Health interview process for experienced candidates are Technical.
What are the top questions asked in CVS Health Sdet Automation Test Engineer interview for experienced candidates?

Some of the top questions asked at the CVS Health Sdet Automation Test Engineer interview for experienced candidates -

  1. DATA base sql query, Java, Selenium, Cypr...read more
  2. AWS, Jenkins, Rest ...read more

Tell us how to improve this page.

CVS Health Sdet Automation Test Engineer Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Wipro Interview Questions
3.7
 • 5.7k Interviews
Hetero Interview Questions
3.9
 • 235 Interviews
Abbott Interview Questions
4.1
 • 151 Interviews
Max Healthcare Interview Questions
4.0
 • 144 Interviews
Poly Medicure Interview Questions
3.6
 • 60 Interviews
Aster MIMS Interview Questions
4.3
 • 6 Interviews
View all
Business Analyst
4 salaries
unlock blur

₹6.5 L/yr - ₹8.2 L/yr

Senior Manager
4 salaries
unlock blur

₹40 L/yr - ₹75 L/yr

Senior Data Scientist
4 salaries
unlock blur

₹40 L/yr - ₹120 L/yr

Technical Lead
3 salaries
unlock blur

₹16 L/yr - ₹36 L/yr

Senior Consultant
3 salaries
unlock blur

₹35 L/yr - ₹85 L/yr

Explore more salaries
Compare CVS Health with

Wipro

3.7
Compare

Hetero

3.9
Compare

Abbott

4.1
Compare

Max Healthcare

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