Upload Button Icon Add office photos

Sage

Compare button icon Compare button icon Compare

Filter interviews by

Sage Senior Qa Automation Test Engineer Interview Questions and Answers

Updated 30 Mar 2024

Sage Senior Qa Automation Test Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Questions about normal day-to-day activities, knowledge of automation framework using pytest.
Round 2 - Technical 

(1 Question)

  • Q1. More questions on reporting in automation framework, test data reading from yaml or xls. Knowledge of CI/CD pipeline creation.
Round 3 - Assignment 

Got assignment to create order placement flow from search page and PLP page using best pytest framework and Azure CI/CD pipeline to trigger it. Used selenium and python.

Round 4 - Behavioral 

(1 Question)

  • Q1. Questions on real scenarios, team leading skills and situations.
Round 5 - HR 

(1 Question)

  • Q1. Willingness on travelling requirements.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Basic quant and reasoning questions
Selenium MCQ
Java programs with MCQ

Round 2 - Technical 

(23 Questions)

  • Q1. Tell me about yourself
  • Q2. Where you initialise driver
  • Ans. 

    The driver is typically initialized in the setup method of a test automation framework.

    • Driver initialization is usually done in a setup method before test execution.

    • Commonly used methods for driver initialization include WebDriverManager, System.setProperty, and driver instantiation.

    • Example: WebDriverManager.chromedriver().setup();

  • Answered by AI
  • Q3. Driver is static or non static
  • Ans. 

    Driver can be both static and non-static depending on the context of its usage.

    • Driver class can be static if it is used to initiate the WebDriver instance in a test automation framework.

    • Driver class can be non-static if it is used as an instance variable within a test class.

    • Static driver can be accessed directly without creating an object of the class.

    • Non-static driver requires an object of the class to be created befo

  • Answered by AI
  • Q4. Difference between static and non static
  • Ans. 

    Static variables belong to the class itself, while non-static variables belong to instances of the class.

    • Static variables are shared among all instances of a class

    • Non-static variables are unique to each instance of a class

    • Static variables are initialized only once, at the start of the program

    • Non-static variables are initialized separately for each instance of the class

  • Answered by AI
  • Q5. Disadvantages of static and non static
  • Ans. 

    Static and non-static have their own disadvantages in QA automation testing.

    • Static methods cannot be overridden or inherited, making it difficult to create flexible test cases.

    • Non-static methods require an instance of the class to be created, which can lead to increased memory usage.

    • Static methods can lead to tight coupling between classes, making it harder to maintain and update the code.

    • Non-static methods may have de...

  • Answered by AI
  • Q6. Parallel execution in TestNG
  • Ans. 

    TestNG allows parallel execution of test cases to save time and improve efficiency.

    • TestNG provides the 'parallel' attribute in the testng.xml file to specify the level of parallelism for test execution.

    • Parallel execution can be achieved at the test level, class level, method level, or suite level.

    • TestNG also supports parallel execution of tests across multiple classes or suites using the 'parallel' attribute in the sui...

  • Answered by AI
  • Q7. Write the code for Parallel testing in TestNG
  • Ans. 

    Parallel testing in TestNG allows running tests concurrently for faster execution.

    • Use 'parallel' attribute in testng.xml file to specify parallel execution mode.

    • Set 'parallel' attribute to 'methods', 'classes', or 'tests' based on the level of parallelism needed.

    • Example: <suite name='MySuite' parallel='tests'>

    • Use 'thread-count' attribute to specify the number of threads to use for parallel execution.

  • Answered by AI
  • Q8. Difference between parallel methods and parallel tests
  • Ans. 

    Parallel methods run multiple methods concurrently within a single test, while parallel tests run multiple tests concurrently.

    • Parallel methods execute multiple methods within a single test class concurrently.

    • Parallel tests execute multiple test classes concurrently.

    • Parallel methods are useful for speeding up the execution of a single test, while parallel tests are useful for running multiple tests faster.

    • Example: Runni...

  • Answered by AI
  • Q9. Upload file using rest assured
  • Ans. 

    Use Rest Assured to upload a file

    • Use the given file path to create a File object

    • Use MultiPartSpecBuilder to build the request with the file

    • Send the request using Rest Assured's given(), when(), and post() methods

  • Answered by AI
  • Q10. Postman basic questions
  • Q11. Parameter for post method in postman
  • Ans. 

    The parameter for a POST method in Postman is typically sent in the request body.

    • Parameters are sent in the request body in key-value pairs

    • Parameters can be sent as form-data, x-www-form-urlencoded, or raw JSON

    • Example: {"key": "value"}

  • Answered by AI
  • Q12. BDD Framework cucumber
  • Q13. Cucumber execution process
  • Q14. How cucumber know step defination file placed
  • Ans. 

    Cucumber knows the step definition file based on the annotations provided in the feature files.

    • Cucumber uses annotations like @Given, @When, @Then to map steps in feature files to corresponding step definition methods.

    • Step definition files are typically placed in a separate package or directory within the project structure.

    • Cucumber scans the project directory for step definition files based on the package structure and

  • Answered by AI
  • Q15. Parameters used in cucumber
  • Ans. 

    Parameters used in cucumber are used to pass values to the step definitions in feature files.

    • Parameters are defined in feature files using < > syntax

    • Parameters can be passed to step definitions using Regular Expressions

    • Parameters can be used to make scenarios more reusable and dynamic

  • Answered by AI
  • Q16. Datatable in cucumber
  • Ans. 

    Datatable in Cucumber is used to pass multiple sets of data to a step definition in a scenario.

    • Datatables are defined using pipes (|) to separate values

    • Each row in the datatable represents a set of data passed to the step definition

    • Datatables can be used for parameterization and data-driven testing

  • Answered by AI
  • Q17. Have u created the testplan document when porject was started
  • Ans. 

    Yes, I have created the test plan document at the start of the project.

    • Yes, I always create a test plan document at the beginning of a project to outline the testing approach and strategy.

    • The test plan document includes details on scope, objectives, resources, schedule, and test cases.

    • It helps in ensuring that all stakeholders are aligned on the testing process and expectations.

    • For example, in my previous project, I cr...

  • Answered by AI
  • Q18. Testing cycle when project was on initial level
  • Ans. 

    During the initial testing cycle of a project, focus is on establishing test cases, setting up test environments, and identifying potential issues.

    • Creating test cases based on requirements

    • Setting up test environments

    • Identifying potential issues and risks

    • Executing test cases and reporting defects

    • Collaborating with developers to resolve issues

  • Answered by AI
  • Q19. Risk management and risk based testing
  • Q20. Which estimate technique you follow , if fibonacci then why it is in 1 2 3 5 8 13 ?? Not in 12345678
  • Ans. 

    Fibonacci sequence is a mathematical pattern where each number is the sum of the two preceding ones.

    • Fibonacci sequence is a series of numbers where each number is the sum of the two preceding ones.

    • The sequence starts with 1, 2, then each subsequent number is the sum of the two previous numbers (1+2=3, 2+3=5, 3+5=8, and so on).

    • This sequence is used in estimating because it reflects natural growth patterns found in natur

  • Answered by AI
  • Q21. What is testing matrix and automation ROI
  • Ans. 

    Testing matrix is a tool used to track test coverage and automation ROI is the return on investment from implementing automation testing.

    • Testing matrix is a visual representation of test cases, test scenarios, and their coverage across different platforms, browsers, devices, etc.

    • Automation ROI is the measure of the benefits gained from automation testing compared to the costs incurred in implementing and maintaining th...

  • Answered by AI
  • Q22. Cicd tool
  • Q23. Handle team ?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Oct 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. TestNG: explain different annotations, parallel test,
  • Ans. 

    testNG annotations are used to control the flow of test execution and parallel test execution allows running tests concurrently.

    • testNG annotations include @Test, @BeforeSuite, @AfterSuite, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

    • Annotations help in setting up preconditions, postconditions, grouping tests, prioritizing tests, and enabling/disabling tests

    • Parallel test execution in t...

  • Answered by AI
  • Q2. Selenium: actions class, xpath writing, windowhandles.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for testNG, selenium well and java programming.

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Java Coding Test dsa program and all that

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce Yourself.
  • Ans. 

    I am a dedicated Automation Engineer with a strong background in programming and problem-solving skills.

    • Experienced in developing automated test scripts using tools like Selenium and Appium

    • Proficient in programming languages such as Java, Python, and C#

    • Skilled in identifying and resolving software defects to ensure high-quality products

    • Familiar with Agile methodologies and continuous integration practices

  • Answered by AI
  • Q2. Basic programming and testing concepts.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. General question: Tell me about your experience at previous company
  • Q2. Answer the question in details with examples

Interview Preparation Tips

Interview preparation tips for other job seekers - Selenium and API questions are the main questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Testing java questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral

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 - Coding Test 

Based on language background they will ask to write code

Round 3 - Technical 

(1 Question)

  • Q1. Based on the project
Round 4 - Technical 

(1 Question)

  • Q1. Based on the project
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2022. There were 3 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 - Aptitude Test 

Logic based questions

Round 3 - Coding Test 

Tough and easy at the same time

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode

I applied via Walk-in and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions related to Java and Selenium, process oriented profile questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Process is very slow and needs to updated

Sage Interview FAQs

How many rounds are there in Sage Senior Qa Automation Test Engineer interview?
Sage interview process usually has 5 rounds. The most common rounds in the Sage interview process are One-on-one Round, Technical and Assignment.
What are the top questions asked in Sage Senior Qa Automation Test Engineer interview?

Some of the top questions asked at the Sage Senior Qa Automation Test Engineer interview -

  1. More questions on reporting in automation framework, test data reading from yam...read more
  2. Questions about normal day-to-day activities, knowledge of automation framework...read more

Tell us how to improve this page.

Sage Senior Qa Automation Test Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
Nagarro Interview Questions
4.0
 • 778 Interviews
Zoho Interview Questions
4.3
 • 514 Interviews
FIS Interview Questions
3.9
 • 479 Interviews
Dell Interview Questions
4.0
 • 391 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Quest Global Interview Questions
3.6
 • 297 Interviews
View all
Peer Review Associate
8 salaries
unlock blur

₹3.5 L/yr - ₹5 L/yr

Software Engineer
7 salaries
unlock blur

₹7.3 L/yr - ₹20 L/yr

Assistant Managing Editor
7 salaries
unlock blur

₹3.3 L/yr - ₹8 L/yr

Data Processing Associate
6 salaries
unlock blur

₹2.2 L/yr - ₹3 L/yr

Assistant Editor
6 salaries
unlock blur

₹5.5 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Sage with

Intuit

3.5
Compare

QuickBooks

3.0
Compare

Zoho

4.3
Compare

Tally Solutions

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