Premium Employer

i

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

Coforge Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Coforge Senior Test Engineer Interview Questions and Answers

Updated 15 May 2025

13 Interview questions

A Senior Test Engineer was asked 1mo ago
Q. How do you fetch data from an Excel sheet, and what is the code logic used for this process?
Ans. 

Fetching data from Excel involves using libraries like Apache POI or OpenPyXL in Java or Python respectively.

  • Use Apache POI for Java: Load workbook and sheet, iterate through rows and cells.

  • Example in Java: Workbook workbook = WorkbookFactory.create(new FileInputStream("file.xlsx"));

  • Use OpenPyXL for Python: Load workbook and access sheets using workbook['SheetName'].

  • Example in Python: wb = load_workbook('file.xlsx...

A Senior Test Engineer was asked 1mo ago
Q. How can you retrieve the stock name with the highest current price from a dynamic web table on a stock market website?
Ans. 

Retrieve the highest stock price from a dynamic web table using web scraping techniques.

  • Use a web scraping library like BeautifulSoup (Python) or Selenium for dynamic content.

  • Identify the table structure in the HTML to locate stock names and prices.

  • Extract stock prices and convert them to a comparable format (e.g., float).

  • Iterate through the extracted data to find the maximum price and its corresponding stock name...

Senior Test Engineer Interview Questions Asked at Other Companies

asked in LTIMindtree
Q1. What should be done when a defect is found in production?
asked in Sapiens
Q2. From Selenium -> Which Automation framework I have implemented ... read more
asked in LTIMindtree
Q3. How did you perform incremental load in your project?
asked in LTIMindtree
Q4. What is meant by regression and retesting?
asked in LTIMindtree
Q5. How can a circular cake be cut into 8 equal pieces with only 3 cu ... read more
A Senior Test Engineer was asked 1mo ago
Q. What is the output of a Java program that compresses the input string "aabbcccd" to "aa2bb2ccc3d1"?
Ans. 

The program compresses the string by counting consecutive characters and appending counts to the output.

  • Input: 'aabbcccd' -> Output: 'aa2bb2ccc3d1'

  • Counts consecutive characters: 'aa' -> 'a2', 'bb' -> 'b2', 'ccc' -> 'c3', 'd' -> 'd1'

  • Final output combines characters and their counts.

A Senior Test Engineer was asked 1mo ago
Q. What is the Java program to shift all zeros to the end of an array?
Ans. 

This Java program shifts all zeros in an array to the end while maintaining the order of non-zero elements.

  • Initialize a count variable to track the position of non-zero elements.

  • Iterate through the array and copy non-zero elements to the front.

  • Fill the remaining positions in the array with zeros after processing all elements.

  • Example: For input [0, 1, 0, 3, 12], output will be [1, 3, 12, 0, 0].

A Senior Test Engineer was asked 1mo ago
Q. What is the XPath expression used to locate the discount percentage of a phone by its name on the Flipkart website?
Ans. 

XPath expression helps locate the discount percentage of a phone on Flipkart by its name.

  • Use the phone's name to identify the specific product element.

  • XPath syntax: //div[contains(@class, 'product-name') and contains(text(), 'PhoneName')]//following-sibling::div[contains(@class, 'discount')]

  • Replace 'PhoneName' with the actual name of the phone you're searching for.

  • Ensure the XPath accurately reflects the structure...

A Senior Test Engineer was asked 4mo ago
Q. Explain your work experience with Selenium and C# automation.
Ans. 

I have 5 years of experience in using Selenium with C# for automation testing of web applications.

  • Developed automation scripts using Selenium WebDriver with C# for regression testing

  • Implemented Page Object Model design pattern for better code maintenance

  • Used NUnit or MSTest for test execution and reporting

  • Integrated with CI/CD tools like Jenkins for automated test runs

  • Handled dynamic elements and pop-ups using exp...

A Senior Test Engineer was asked 9mo ago
Q. Write a program to count the occurrences of each character in a given string.
Ans. 

Program to count characters in a string input

  • Use a loop to iterate through each character in the string

  • Use a dictionary to store the count of each character

  • Handle both uppercase and lowercase characters separately

Are these interview questions helpful?
A Senior Test Engineer was asked 9mo ago
Q. Describe the current project framework.
Ans. 

Our current project framework is based on Selenium WebDriver and TestNG for automated testing of web applications.

  • Utilizing Selenium WebDriver for browser automation

  • Implementing TestNG for test case management and execution

  • Integrating with Jenkins for continuous integration

  • Using Page Object Model design pattern for better test maintenance

A Senior Test Engineer was asked
Q. What is the difference between throw and throws?
Ans. 

Throw and throws are keywords in Java used for exception handling. Throw is used to throw an exception while throws is used to declare an exception.

  • Throw is used to explicitly throw an exception in a method.

  • Throws is used to declare the exceptions that a method may throw.

  • Throw is followed by an instance of an exception class.

  • Throws is followed by the name of the exception class or classes separated by commas.

  • Throw...

A Senior Test Engineer was asked 1mo ago
Q. What is the process for creating a BDD login scenario using DataTables to pass values, and could you provide the logic for the step definitions?
Ans. 

Creating a BDD login scenario with DataTables involves defining scenarios and implementing step definitions for data-driven testing.

  • Define a feature file with a scenario outline for login.

  • Use DataTables to pass multiple sets of login credentials.

  • Example: Given I have the following login details: | username | password |

  • Implement step definitions to handle the DataTable input.

  • Use assertions to verify successful or f...

Coforge Senior Test Engineer Interview Experiences

14 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a highly experienced Senior Test Engineer with a strong background in software testing and quality assurance.

    • Over 8 years of experience in software testing

    • Proficient in test planning, execution, and reporting

    • Skilled in automation testing tools such as Selenium and JUnit

    • Experience in testing web and mobile applications

    • Strong problem-solving and analytical skills

  • Answered by AI
  • Q2. Explain selenium C sharp automation work experience
  • Ans. 

    I have 5 years of experience in using Selenium with C# for automation testing of web applications.

    • Developed automation scripts using Selenium WebDriver with C# for regression testing

    • Implemented Page Object Model design pattern for better code maintenance

    • Used NUnit or MSTest for test execution and reporting

    • Integrated with CI/CD tools like Jenkins for automated test runs

    • Handled dynamic elements and pop-ups using explicit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Useless company no response from hr . They won’t give proper feedback reject the candidate without any proper reason.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is the output of a Java program that compresses the input string "aabbcccd" to "aa2bb2ccc3d1"?
  • Ans. 

    The program compresses the string by counting consecutive characters and appending counts to the output.

    • Input: 'aabbcccd' -> Output: 'aa2bb2ccc3d1'

    • Counts consecutive characters: 'aa' -> 'a2', 'bb' -> 'b2', 'ccc' -> 'c3', 'd' -> 'd1'

    • Final output combines characters and their counts.

  • Answered by AI
  • Q2. What is the process for creating a BDD login scenario using DataTables to pass values, and could you provide the logic for the step definitions?
  • Ans. 

    Creating a BDD login scenario with DataTables involves defining scenarios and implementing step definitions for data-driven testing.

    • Define a feature file with a scenario outline for login.

    • Use DataTables to pass multiple sets of login credentials.

    • Example: Given I have the following login details: | username | password |

    • Implement step definitions to handle the DataTable input.

    • Use assertions to verify successful or failed...

  • Answered by AI
  • Q3. What is the XPath expression used to locate the discount percentage of a phone by its name on the Flipkart website?
  • Ans. 

    XPath expression helps locate the discount percentage of a phone on Flipkart by its name.

    • Use the phone's name to identify the specific product element.

    • XPath syntax: //div[contains(@class, 'product-name') and contains(text(), 'PhoneName')]//following-sibling::div[contains(@class, 'discount')]

    • Replace 'PhoneName' with the actual name of the phone you're searching for.

    • Ensure the XPath accurately reflects the structure of t...

  • Answered by AI
  • Q4. What is the Java program to shift all zeros to the end of an array?
  • Ans. 

    This Java program shifts all zeros in an array to the end while maintaining the order of non-zero elements.

    • Initialize a count variable to track the position of non-zero elements.

    • Iterate through the array and copy non-zero elements to the front.

    • Fill the remaining positions in the array with zeros after processing all elements.

    • Example: For input [0, 1, 0, 3, 12], output will be [1, 3, 12, 0, 0].

  • Answered by AI
  • Q5. How can you retrieve the stock name with the highest current price from a dynamic web table on a stock market website?
  • Ans. 

    Retrieve the highest stock price from a dynamic web table using web scraping techniques.

    • Use a web scraping library like BeautifulSoup (Python) or Selenium for dynamic content.

    • Identify the table structure in the HTML to locate stock names and prices.

    • Extract stock prices and convert them to a comparable format (e.g., float).

    • Iterate through the extracted data to find the maximum price and its corresponding stock name.

    • Exam...

  • Answered by AI
  • Q6. How do you fetch data from an Excel sheet, and what is the code logic used for this process?
  • Ans. 

    Fetching data from Excel involves using libraries like Apache POI or OpenPyXL in Java or Python respectively.

    • Use Apache POI for Java: Load workbook and sheet, iterate through rows and cells.

    • Example in Java: Workbook workbook = WorkbookFactory.create(new FileInputStream("file.xlsx"));

    • Use OpenPyXL for Python: Load workbook and access sheets using workbook['SheetName'].

    • Example in Python: wb = load_workbook('file.xlsx'); w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Describe current project framework
  • Ans. 

    Our current project framework is based on Selenium WebDriver and TestNG for automated testing of web applications.

    • Utilizing Selenium WebDriver for browser automation

    • Implementing TestNG for test case management and execution

    • Integrating with Jenkins for continuous integration

    • Using Page Object Model design pattern for better test maintenance

  • Answered by AI
  • Q2. Progam to get character count from string input
  • Ans. 

    Program to count characters in a string input

    • Use a loop to iterate through each character in the string

    • Use a dictionary to store the count of each character

    • Handle both uppercase and lowercase characters separately

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Selenium basic questions
  • Q2. Java OOPs question

Skills evaluated in this interview

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

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Be thorough on OOP's Concepts
  • Q2. Be thorough on framework applications
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Automation Testing concepts and Core Java
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. *Policy interview questions* 1. Policy dashboard 2. Billing dashboard 3. Work flow of policy to billing 4. Type of account. Direct and agency 5. Rewrite and renew 6. Sit and regression 7. Smoke and sanit...
Round 3 - Technical 

(1 Question)

  • Q1. 1. Billing transaction 2. Forms 3. Premium
Round 4 - HR 

(1 Question)

  • Q1. Introduction About coforge And compensation discussion
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Cypress, typescript etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was totally fed-up. It was like he was forced to take this interview.
Frustrated person.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Oops Concept for Java, Wait Concepts for Selenium, BDD Cucumber Framework, Manual testing like Agile Methodology
Round 3 - Coding Test 

Half hour coding test, Remove duplicate values for string for the Automation platform

Round 4 - HR 

(1 Question)

  • Q1. Discuss with salary and family details and joining time and date,
Round 1 - Technical 

(1 Question)

  • Q1. Based on project technology
Round 2 - Technical 

(1 Question)

  • Q1. Managerial round based on project
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation expected

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy process, keep. Calm during the interview

I applied via Naukri.com and was interviewed before Oct 2021. 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 - One-on-one 

(1 Question)

  • Q1. What is wait, ? what is oops concept
Round 3 - Technical 

(1 Question)

  • Q1. What is BDD? What is framework and explain in details

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare the oops concept and selenium commands with bdd and maven strongly

Skills evaluated in this interview

Top trending discussions

View All
Engineering - Software & QA
2w
a senior software engineer
.NET's Future & Senior Dev Salary Trends
I'm a Full Stack .NET Dev with 6+ years of experience. Seeing a lot of posts on LinkedIn saying .NET (especially .NET Core) might get replaced by stacks like Java/Spring or Python/Django or Next soon. What's the typical salary range in India for someone with my experience right now? Would love some insights from the community! Also, how can I stay ahead of the competition?
Got a question about Coforge?
Ask anonymously on communities.

Coforge Interview FAQs

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

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

  1. 1)Difference between findelement and find elements 2)Type of exception, name fe...read more
  2. How can you retrieve the stock name with the highest current price from a dynam...read more
  3. What is the process for creating a BDD login scenario using DataTables to pass ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 12 interview experiences

Difficulty level

Moderate 86%
Hard 14%

Duration

Less than 2 weeks 57%
2-4 weeks 43%
View more
Join Coforge Engage with the emerging!
Coforge Senior Test Engineer Salary
based on 1.8k salaries
₹4.8 L/yr - ₹20 L/yr
At par with the average Senior Test Engineer Salary in India
View more details

Coforge Senior Test Engineer Reviews and Ratings

based on 216 reviews

3.3/5

Rating in categories

3.0

Skill development

3.4

Work-life balance

3.1

Salary

3.2

Job security

3.2

Company culture

2.6

Promotions

3.1

Work satisfaction

Explore 216 Reviews and Ratings
Senior Software Engineer
4.9k salaries
unlock blur

₹6 L/yr - ₹26.6 L/yr

Technical Analyst
2.8k salaries
unlock blur

₹9.7 L/yr - ₹38.4 L/yr

Software Engineer
2.2k salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹4.8 L/yr - ₹20 L/yr

Technology Specialist
1.3k salaries
unlock blur

₹12 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare

Infosys

3.6
Compare
write
Share an Interview