Upload Button Icon Add office photos

Filter interviews by

Qmex Steel Construction Automation Test Engineer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
4
Good
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 - Coding Test 

30 mins - interview duration
C# OOPS, Selenium and Manual testing concepts

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain the STLC process
  • Ans. 

    STLC is the Software Testing Life Cycle process which includes planning, designing, executing, and reporting of tests.

    • STLC involves planning, designing, executing, and reporting of tests

    • It includes phases like requirement analysis, test planning, test design, test execution, and test closure

    • Each phase has specific activities and deliverables to ensure quality of the software product

    • STLC helps in identifying defects ear...

  • Answered by AI
  • Q2. Explain the selenium webdriver methods
  • Ans. 

    Selenium WebDriver methods are used for automating web application testing by interacting with elements on a webpage.

    • WebDriver.get(String url) - Opens a webpage by providing the URL

    • WebElement.sendKeys(String text) - Enters text into a text field

    • WebElement.click() - Clicks on an element

    • WebDriver.findElement(By locator) - Locates a single element on the webpage

    • WebDriver.findElements(By locator) - Locates multiple element

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Introduction yourself
  • Ans. 

    I am a dedicated Automation Test Engineer with 5 years of experience in creating and executing automated test scripts.

    • 5 years of experience in automation testing

    • Proficient in creating and executing automated test scripts

    • Strong knowledge of testing tools like Selenium and JUnit

    • Experience in testing web and mobile applications

    • Familiar with Agile methodology

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Explain your project. 2. Explain Oops concept
  • Ans. 

    I have worked on a project to automate testing processes using various tools and frameworks.

    • Implemented automation scripts using Selenium WebDriver for web application testing

    • Utilized TestNG framework for test case management and execution

    • Integrated Jenkins for continuous integration and deployment

    • Used Page Object Model design pattern for better code maintenance

    • Performed API testing using tools like Postman

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Referral and was interviewed in Mar 2023. 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 

(1 Question)

  • Q1. General Programming Questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Business related questions were asked
Round 4 - HR 

(1 Question)

  • Q1. Salary Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn core concepts
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About yourself, framw work of Tool worked withVersions and some typical scenario based questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Defect life cycle
  • Q2. Palindrome java program
  • Q3. Reverse string java program
  • Ans. 

    Reverse a string in Java using StringBuilder or iterative approach.

    • Use StringBuilder's reverse() method to reverse the string.

    • Iterate through the string from end to start and build the reversed string.

    • Handle null or empty string cases.

    • Example: input 'hello' -> output 'olleh'

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concept, Selenium ,One Reverse string handle program without Reverse function.Collection frameworks questions on Hash Table and Hash Map, findelements vs findelement,ArrayList vs LinkList, Regression ...
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2023. 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 - Technical 

(2 Questions)

  • Q1. Programming questions related to Java
  • Q2. Questions related to Automation and Manual testing
Round 3 - HR 

(2 Questions)

  • Q1. Questions related to my family
  • Q2. Questions related to company

Interview Preparation Tips

Interview preparation tips for other job seekers - To develop programming and coding skill as well as to improve the communication skill.

I applied via Referral and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

12 Questions

  • Q1. Explain your framework in detail
  • Ans. 

    My framework is a hybrid framework that combines data-driven and keyword-driven approaches.

    • The framework uses Excel sheets to store test data and keywords.

    • It uses Selenium WebDriver for browser automation.

    • It has a modular structure with reusable functions and libraries.

    • It generates detailed HTML reports for test results.

    • It supports parallel execution of tests.

    • It has built-in exception handling and logging mechanisms.

  • Answered by AI
  • Q2. What is Maven and explain it's structure
  • Ans. 

    Maven is a build automation tool used primarily for Java projects.

    • Maven uses a Project Object Model (POM) to manage dependencies and build process

    • It uses a central repository to download dependencies

    • Maven has a defined directory structure for projects

    • Plugins can be added to extend Maven's functionality

  • Answered by AI
  • Q3. What is setting.xml in Maven
  • Ans. 

    settings.xml is a configuration file used by Maven to customize its behavior.

    • It contains information about the local repository location, proxy settings, and server credentials.

    • It can be used to define profiles for different environments.

    • It is located in the .m2 directory in the user's home directory.

    • It can be overridden by using the -s or --settings command-line option.

  • Answered by AI
  • Q4. How to link TestNG file in Maven POM
  • Ans. 

    To link TestNG file in Maven POM, add the TestNG dependency and plugin in POM.xml

    • Add TestNG dependency in POM.xml

    • Add TestNG plugin in POM.xml

    • Configure TestNG plugin to run the TestNG XML file

    • Example: org.testng testng 7.4.0 org.apache.maven.plugins maven-surefire-plugin 3.0.0-M5 testng.xml

  • Answered by AI
  • Q5. What is Select class in Selenium. Write down syntax and explain the methods
  • Ans. 

    Select class in Selenium is used to handle dropdowns and multi-select options on a web page.

    • Syntax: Select select = new Select(driver.findElement(By.id("dropdownId")));

    • Methods: selectByVisibleText(), selectByValue(), selectByIndex(), getOptions(), isMultiple(), getAllSelectedOptions(), deselectAll(), deselectByVisibleText(), deselectByValue(), deselectByIndex()

    • Select class is used to handle dropdowns and multi-select o...

  • Answered by AI
  • Q6. What is Jenkins and how to create job in jenkins
  • Ans. 

    Jenkins is an open-source automation server used for continuous integration and delivery. It allows creating and managing jobs.

    • Jenkins is a popular tool for automating software development processes.

    • It provides a web-based interface for creating and managing jobs.

    • Jobs in Jenkins are used to define tasks and workflows for building, testing, and deploying software.

    • To create a job in Jenkins, navigate to the Jenkins dashb...

  • Answered by AI
  • Q7. How to point to any other branch other than master in Jenkins
  • Ans. 

    To point to any other branch in Jenkins, use the 'Branch specifier' field in the 'Source Code Management' section.

    • In the Jenkins job configuration, go to the 'Source Code Management' section

    • Select the appropriate SCM tool (e.g. Git, SVN)

    • In the 'Branch specifier' field, enter the name of the branch you want to point to (e.g. 'develop', 'feature/xyz')

    • Save the configuration and run the job

  • Answered by AI
  • Q8. What is the design pattern used in my framework
  • Ans. 

    I don't have the available data to answer this question.

    • N/A

  • Answered by AI
  • Q9. What is polymorphism and explain with examples you used in your project
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as if they were the same type.

    • Polymorphism is achieved through method overriding and method overloading

    • Example: A parent class Animal has a method called makeSound(). Child classes like Dog, Cat, and Cow can override this method to make their own unique sound.

    • Another example is method overloading where a...

  • Answered by AI
  • Q10. What is abstraction and difference between interface and abstract class
  • Ans. 

    Abstraction is a way of hiding implementation details. An interface is a contract that specifies the behavior of a class.

    • Abstraction is achieved through abstract classes and interfaces

    • Abstract classes can have both abstract and non-abstract methods

    • Interfaces can only have abstract methods and constants

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

    • Abstract classes can have constru...

  • Answered by AI
  • Q11. Write SQL query to delete duplicate records
  • Ans. 

    SQL query to delete duplicate records

    • Use the DELETE statement with a subquery to identify and delete duplicate records

    • The subquery should select the duplicate records based on the columns that define uniqueness

    • Use the ROW_NUMBER() function to assign a unique number to each row, and delete rows with a number greater than 1

  • Answered by AI
  • Q12. Write SQL query to get the 10th highest salary from employee table
  • Ans. 

    SQL query to get the 10th highest salary from employee table

    • Use ORDER BY and LIMIT clauses

    • Subquery can be used to get the 10th highest salary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on the framework you have in your organization and you should know why have you used particular line in your framework.

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 before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is Robot framework? Challenges faced during testing? Types of Testing. How to handle bugs? Whether you will be able to work for extra hours during prod releases?
  • Ans. 

    Robot Framework is a generic open-source automation framework for acceptance testing and acceptance test-driven development (ATDD).

    • Robot Framework is a keyword-driven test automation framework that uses tabular test data syntax.

    • Challenges faced during testing include identifying and prioritizing test cases, handling dynamic elements, and maintaining test scripts.

    • Types of testing include functional testing, regression t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate basics and theory part. Should be able to explain the real time scenarios clearly.

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
JSW Steel Interview Questions
3.9
 • 561 Interviews
UltraTech Cement Interview Questions
4.2
 • 527 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
JLL Interview Questions
4.1
 • 334 Interviews
Bosch Interview Questions
4.2
 • 328 Interviews
Quest Global Interview Questions
3.6
 • 292 Interviews
View all
Compare Qmex Steel Construction with

Tech Mahindra

3.6
Compare

UltraTech Cement

4.2
Compare

JSW Steel

3.9
Compare

Indian Army

4.7
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