Upload Button Icon Add office photos
Engaged 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

Compare button icon Compare button icon Compare
3.3

based on 4.6k Reviews

Filter interviews by

Coforge Automation Test Lead Interview Questions, Process, and Tips

Updated 2 Oct 2023

Coforge Automation Test Lead Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Apr 2023. 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 

(9 Questions)

  • Q1. Tell your Role in current project
  • Q2. Explain BDD framework
  • Ans. 

    BDD framework is a software development process that encourages collaboration between developers, QA, and non-technical stakeholders.

    • BDD stands for Behavior Driven Development

    • Uses natural language to define requirements and tests

    • Focuses on the behavior of the system from the end user's perspective

    • Uses tools like Cucumber, SpecFlow, or JBehave

  • Answered by AI
  • Q3. Write feature file with feature
  • Ans. 

    Feature file with feature for automation testing

    • Feature: Login functionality

    • Scenario: User logs in with valid credentials

    • Given user is on the login page

    • When user enters valid username and password

    • Then user should be logged in successfully

  • Answered by AI
  • Q4. How to run feature file
  • Ans. 

    To run a feature file, use a test automation tool like Cucumber or SpecFlow.

    • Use a test automation tool like Cucumber or SpecFlow to run feature files

    • Create a test runner class or configuration file to specify which feature file to run

    • Execute the test runner class or configuration file to run the feature file

    • Check the test results to see if the feature file ran successfully

  • Answered by AI
  • Q5. How many feature file will be there
  • Ans. 

    The number of feature files will depend on the project requirements and the level of granularity in test scenarios.

    • Number of feature files can vary based on the size and complexity of the project

    • Each feature file typically represents a specific functionality or feature being tested

    • Feature files can be organized based on modules, user stories, or test scenarios

  • Answered by AI
  • Q6. Can class be interface
  • Ans. 

    No, a class cannot be an interface in programming.

    • A class is a blueprint for objects, while an interface is a contract for classes to implement certain methods.

    • A class can implement multiple interfaces, but it cannot extend multiple classes.

    • Interfaces cannot have constructors or instance variables, while classes can have both.

  • Answered by AI
  • Q7. Difference between class and interface
  • Ans. 

    Class is a blueprint for objects, while interface is a contract for classes to implement certain methods.

    • Class can have both data members and methods, while interface can only have method signatures.

    • A class can implement multiple interfaces, but can only inherit from one class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Classes can have constructors, while interfaces cannot.

    • Example: Class 'Car' can have...

  • Answered by AI
  • Q8. WAP to replace all vowels with char x in a given string
  • Ans. 

    A program to replace all vowels with 'x' in a given string.

    • Iterate through each character in the string

    • Check if the character is a vowel (a, e, i, o, u)

    • If it is a vowel, replace it with 'x'

    • Return the modified string

  • Answered by AI
  • Q9. Explain different types of asserts used in Selenium
  • Ans. 

    Different types of asserts used in Selenium include assert, verify, and waitForAssert

    • Assert: Stops the execution if the verification fails

    • Verify: Continues the execution even if the verification fails

    • waitForAssert: Waits for a certain condition to be true before proceeding

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Coforge Automation Test Lead interview:
  • BDD Framework
  • Core Java
  • Feature file
Interview preparation tips for other job seekers - Prepare BDD framework, writing code in BDD, Running test in BDD, basically everything about BDD

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. More questions asked, oops, coding and selenium, testNG related questions
  • Q2. Drop down coding
Round 2 - Technical 

(1 Question)

  • Q1. Many questions related to projects but not selected at last
Round 3 - One-on-one 

(1 Question)

  • Q1. Basics of Java selenium
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Related to HashMap, Link list , Array

I applied via Naukri.com and was interviewed before Mar 2021. There were 4 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. More about automation selenium and Java concepts
  • Q2. Testing process and concepts
Round 3 - Behavioral 

(1 Question)

  • Q1. Testing approach and test strategies
Round 4 - HR 

(1 Question)

  • Q1. Expectation ctc and notice period negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Preapare well with positive attitude and strict to your expected salary
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Current Project
  • Q2. Framework Structure
  • Q3. Code for sorting an array
  • Q4. Create Xpath
  • Q5. Few Appium related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Few scenario based questions
  • Q2. Why GlobalLogic
Round 3 - Technical 

(1 Question)

  • Q1. Project related questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. What is a constructor and it's purpose?
  • Ans. 

    A constructor is a special type of method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to

    • They are used to initialize the object's state or perform any necessary setup

    • Constructors can have parameters to customize the initialization process

    • Example: public class Car { public Car(String color) { this.color = color; } }

  • Answered by AI
  • Q2. Can you override a Static Method?
  • Ans. 

    Yes, a static method can be overridden in Java using the concept of method hiding.

    • In Java, static methods cannot be overridden in the traditional sense like instance methods.

    • When a subclass defines a static method with the same signature as a static method in the superclass, it is called method hiding.

    • Method hiding does not follow polymorphism and is resolved at compile time based on the reference type.

    • Example: class...

  • Answered by AI
  • Q3. Can you create a Static local variable inside a Static method
  • Ans. 

    Yes, a static local variable can be created inside a static method.

    • Yes, a static local variable can be declared inside a static method in programming languages like C++.

    • Static local variables retain their values between function calls.

    • Example: static void myStaticMethod() { static int count = 0; count++; }

  • Answered by AI
  • Q4. What is the memory allocation for a String?
  • Ans. 

    String memory allocation is dynamic and depends on the length of the string.

    • String memory allocation is dynamic and can change based on the length of the string.

    • In Java, a String object is stored in the heap memory.

    • Each character in a String typically takes up 2 bytes of memory.

    • String objects in Java are immutable, meaning once a String object is created, it cannot be changed.

  • Answered by AI
  • Q5. Can you create a Static method inside an Abstract class or Interface?
  • Ans. 

    Yes, you can create a static method inside an abstract class or interface.

    • Static methods can be defined in interfaces since Java 8.

    • Static methods in interfaces are used for providing utility methods that are not tied to any specific instance of the interface.

    • Static methods in abstract classes can be used for common functionality that does not require an instance of the class.

  • Answered by AI
  • Q6. What is the Parent class of Java?
  • Ans. 

    The parent class of Java is the Object class.

    • All classes in Java are directly or indirectly derived from the Object class.

    • The Object class is the root class in Java's class hierarchy.

    • It provides methods that are common to all objects in Java, such as toString(), equals(), and hashCode().

  • Answered by AI
  • Q7. What is Window Handles in Selenium?
  • Ans. 

    Window Handles in Selenium are unique identifiers used to handle multiple browser windows in a Selenium test script.

    • Window Handles are unique alphanumeric strings assigned to each browser window opened by Selenium.

    • They are used to switch between different browser windows during a test script execution.

    • Window Handles can be obtained using getWindowHandles() method in Selenium.

    • Example: Set handles = driver.getWindowHandl

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mphasis Automation Test Engineer interview:
  • Selenium
  • Java
  • OOPS
  • Manual Testing
Interview preparation tips for other job seekers - Nowadays, the interviewers expect the same Java language of a Developer as a Tester. But, how will that be possible? If a Tester has the same knowledge as a Developer, then why would he/she become a Tester instead of a Developer? Please open up your thoughts to the Interviewer, so that they can think before confusing with the deep logical knowledge.

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. Code to print the no of Times the letters present in a string
  • Ans. 

    Code to count the occurrences of each letter in a string and print the result

    • Iterate through each character in the string

    • Use a dictionary to store the count of each letter

    • Print the count of each letter at the end

  • Answered by AI
  • Q2. What are the ways to start a Appium server
  • Ans. 

    Appium server can be started using command line, programmatically in code, or using Appium desktop app.

    • Start Appium server using command line by running 'appium' command

    • Start Appium server programmatically in code using Appium server programmatically in code using AppiumDriverLocalService class

    • Start Appium server using Appium desktop app by launching the app and starting the server

  • Answered by AI
  • Q3. How to run tests parallel for mobile devices
  • Ans. 

    Tests can be run parallel for mobile devices using test automation frameworks like Appium or Espresso.

    • Use test automation frameworks like Appium or Espresso to run tests parallel for mobile devices

    • Leverage cloud-based testing platforms like Sauce Labs or BrowserStack for parallel testing on multiple devices

    • Implement parallel test execution using tools like TestNG or JUnit in combination with Appium or Espresso

    • Utilize d...

  • Answered by AI
  • Q4. How do you automate otp in mobile
  • Ans. 

    Automating OTP in mobile involves using automation tools to interact with the OTP input field and validate the received OTP.

    • Use automation tools like Appium or Espresso to interact with the OTP input field

    • Extract the OTP from the message received on the mobile device

    • Validate the extracted OTP with the OTP input field

    • Handle scenarios where OTP validation fails

  • Answered by AI
  • Q5. What are desired capabilities
  • Ans. 

    Desired capabilities are a set of properties or attributes that define the behavior of a browser or mobile device in Selenium automation testing.

    • Desired capabilities are key-value pairs that are used to configure the WebDriver instances in Selenium.

    • They can be used to set properties like browser name, version, platform, and other settings.

    • For example, setting 'browserName' to 'chrome' will launch the Chrome browser dur

  • Answered by AI
  • Q6. How do you tell appium to run tests on ios or Android devices
  • Ans. 

    To run tests on iOS or Android devices using Appium, specify the platformName capability in desired capabilities.

    • Specify platformName capability as 'iOS' for iOS devices and 'Android' for Android devices

    • Include other necessary desired capabilities like deviceName, platformVersion, appPackage, appActivity, etc.

    • Example: capabilities.setCapability('platformName', 'iOS');

  • Answered by AI
  • Q7. How to set up automation for ios devices
  • Ans. 

    Setting up automation for iOS devices involves using tools like Appium and Xcode for testing mobile applications.

    • Install Xcode on your Mac machine

    • Set up Appium for iOS automation

    • Connect your iOS device to the Mac machine

    • Create test scripts using Appium for iOS apps

    • Execute the test scripts on the connected iOS device

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic selenium and Basic Java
Round 2 - Technical 

(1 Question)

  • Q1. Java Program - Reverse a string Selenium - stale element
  • Ans. 

    Reverse a string using Java program and handle stale element in Selenium

    • Create a Java program to reverse a string using StringBuilder or char array

    • In Selenium, handle stale element exception by refreshing the element or using WebDriverWait

    • Example: Java program - input: 'hello', output: 'olleh'; Selenium - handle stale element by refreshing the element before interacting with it

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your expected salary
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Automation Test Engineers.

    • I have researched the average salary range for Automation Test Engineers in this location.

    • I am looking for a competitive salary that reflects my expertise in automation testing.

    • I am open to negotiation based on the overall compensation package offered.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Approached by Company

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me your Self introduce
  • Q2. Tell me project structure
  • Ans. 

    Project structure refers to the organization of files, folders, and resources within a software project.

    • Main folders like src (source code), test (test cases), lib (libraries), docs (documentation)

    • Subfolders for specific modules or components

    • Configuration files like pom.xml, package.json, etc.

    • Build scripts like Jenkinsfile, Dockerfile

    • Version control files like .gitignore, .gitattributes

    • README.md file for project overvi

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Skill preparation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Selenium framework, exceptions, how to right click double click,
  • Q2. Rest assured, serialization , how to send POST request

Coforge Interview FAQs

How many rounds are there in Coforge Automation Test Lead interview?
Coforge interview process usually has 2 rounds. The most common rounds in the Coforge interview process are Resume Shortlist and Technical.
How to prepare for Coforge Automation Test Lead 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 Appium, Automation Testing, GUI Testing, Java and SDET.
What are the top questions asked in Coforge Automation Test Lead interview?

Some of the top questions asked at the Coforge Automation Test Lead interview -

  1. WAP to replace all vowels with char x in a given str...read more
  2. Explain different types of asserts used in Selen...read more
  3. How many feature file will be th...read more

Tell us how to improve this page.

Coforge Automation Test Lead Salary
based on 18 salaries
₹17 L/yr - ₹28 L/yr
38% more than the average Automation Test Lead Salary in India
View more details
Senior Software Engineer
4.8k salaries
unlock blur

₹6.2 L/yr - ₹26 L/yr

Technical Analyst
2.5k salaries
unlock blur

₹9.5 L/yr - ₹38.4 L/yr

Software Engineer
2k salaries
unlock blur

₹2.2 L/yr - ₹9.5 L/yr

Senior Test Engineer
1.8k salaries
unlock blur

₹4.6 L/yr - ₹19.3 L/yr

Technology Specialist
1.2k salaries
unlock blur

₹11.9 L/yr - ₹42 L/yr

Explore more salaries
Compare Coforge with

Capgemini

3.8
Compare

Cognizant

3.8
Compare

Accenture

3.9
Compare

Infosys

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