Upload Button Icon Add office photos

Filter interviews by

QualityKiosk Technologies Automation Tester Interview Questions and Answers

Updated 26 Sep 2024

QualityKiosk Technologies Automation Tester Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal Aptitude Test

Round 2 - Technical 

(2 Questions)

  • Q1. Tell Me About Yourself
  • Ans. 

    I am a dedicated Automation Tester 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 Agile development environment

    • Excellent problem-solving skills

  • Answered by AI
  • Q2. 1 Java Code, Basic of Selenium

Automation Tester Jobs at QualityKiosk Technologies

View all

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is playwright and it’s features
  • Ans. 

    Playwright is a Node.js library for browser automation that allows you to write reliable and maintainable tests.

    • Playwright supports multiple browsers such as Chrome, Firefox, and WebKit.

    • It provides a single API to automate web applications across different browsers.

    • Playwright has built-in support for headless mode, network interception, and device emulation.

    • It allows you to take screenshots, record videos, and trace ne

  • Answered by AI
  • Q2. What is config file in playwright
  • Ans. 

    Config file in Playwright is used to store settings and configurations for the automation tests.

    • Config file is typically a JSON or JavaScript file where you can define settings such as browser type, launch options, timeouts, etc.

    • It helps in centralizing and managing configurations for multiple tests.

    • Example: playwright.config.js file in Playwright project.

  • Answered by AI
  • Q3. How to do parallel execution
  • Ans. 

    Parallel execution can be achieved by running multiple test cases simultaneously to save time and increase efficiency.

    • Use test automation frameworks like TestNG or JUnit to run tests in parallel

    • Configure test suites to run in parallel using tools like Selenium Grid

    • Leverage cloud-based testing platforms for parallel execution

    • Use tools like Jenkins to schedule and execute tests in parallel

  • Answered by AI
  • Q4. How to run playwright test
  • Ans. 

    To run playwright test, use the 'npx playwright test' command in the terminal.

    • Open the terminal

    • Navigate to the directory where your test files are located

    • Run the command 'npx playwright test' to execute the tests

  • Answered by AI
Round 2 - Coding Test 

The question was asked from a site where the book api question was given and was asked me to code

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

The first round was coding+ aptitude
Gave exam on unstop platform the aptitude questions where divided into section 45 mins for aptitude (logical reasoning+ quants+ verbal) then 25 min for technical mcqs try to be as fast as you can

Round 2 - Coding Test 

It consisted of 3 coding questions 2 were easy 1 was hard

Round 3 - Virtual interview 

(2 Questions)

  • Q1. They asked me mostly SQL based on my resume ( asked other friends, and mostly the question where on the skills you mention on resume)
  • Q2. Some coding questions like palindrome and reverse a string
Round 4 - Technical 

(2 Questions)

  • Q1. Mostly resume based questions
  • Q2. Text cases for your projects and how do you test your projects
  • Ans. 

    I create test cases based on project requirements and use automation tools to test the projects.

    • Identify test scenarios based on project requirements

    • Create test cases for positive and negative scenarios

    • Use automation tools like Selenium or Appium to execute test cases

    • Analyze test results and report any issues found

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic HT question

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Selenium project realtime questions like handling Dynamic web elements
  • Q2. SQL query for joining
  • Ans. 

    SQL query for joining tables to retrieve data from multiple related tables.

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q3. Java program for oops concepts
  • Ans. 

    Java program showcasing OOPs concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Create classes representing different entities with properties and methods

    • Use inheritance to create a parent-child class relationship

    • Demonstrate encapsulation by setting private variables and using getter and setter methods

    • Show polymorphism by overriding methods in child classes

    • Implement abstraction by creating abstract

  • Answered by AI
  • Q4. Writing Xpath for any page
  • Ans. 

    Xpath is a query language used to locate elements on a web page based on their attributes and structure.

    • Identify unique attributes of the element you want to locate

    • Use the '//' operator to search for elements anywhere in the document

    • Use the '[@attribute='value']' syntax to specify the attribute and value you are looking for

    • Combine multiple conditions using 'and' or 'or' operators

    • Use functions like 'contains()', 'starts

  • Answered by AI
  • Q5. High level test scenarios

Skills evaluated in this interview

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 Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between fact and dimension.
  • Ans. 

    Fact tables contain quantitative data that can be measured, while dimension tables contain descriptive attributes related to the facts.

    • Fact tables store numerical data such as sales revenue, quantity sold, etc.

    • Dimension tables store descriptive attributes like product name, customer name, etc.

    • Fact tables are typically larger in size compared to dimension tables.

    • Fact tables are connected to dimension tables through fore

  • Answered by AI
  • Q2. SQL query to find second Max salary.
  • Ans. 

    Use SQL query with subquery to find second highest salary.

    • Use ORDER BY and LIMIT to get the second highest salary.

    • Use a subquery to exclude the highest salary from the result set.

    • Example: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is the significance of the public static void main(String arv[]) method in Java?
  • Ans. 

    The public static void main(String arv[]) method is the entry point of a Java program, where execution begins.

    • The 'public' keyword allows the method to be accessed from outside the class.

    • The 'static' keyword allows the method to be called without creating an instance of the class.

    • The 'void' keyword indicates that the method does not return any value.

    • The 'main' method is the starting point of execution for a Java progra...

  • Answered by AI
  • Q2. Given a string input = "Achiever2025," how can you separate the alphabets and digits from input?
  • Ans. 

    Separate alphabets and digits from a given string input.

    • Iterate through each character in the input string

    • Check if the character is a letter or a digit using built-in functions like isalpha() and isdigit()

    • Create separate arrays for alphabets and digits and store the characters accordingly

  • Answered by AI
  • Q3. What is Class and Object
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is a specific instance of a class.

    • Classes can be used to create multiple objects with similar characteristics.

    • Objects can interact with each other by calling methods defined in their class.

    • Example: Class 'Car' defines properties like 'color' and behaviors like 'drive'....

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Netcracker Technology Automation Test Engineer interview:
  • Oops
  • Java String based questions
  • Testng
  • Automation Framework
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Coding Questions Reverse string
  • Q2. Webtables, dropdown,iframes, IWebdriver
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 Apr 2024. There were 2 interview rounds.

Round 1 - Screening Round 

(1 Question)

  • Q1. 1) Brief me about Yourself. 2) Education Background they ask me because I am from Non-IT. 3) If you have a mobile application Suppose you will be doing a Smoke Test Tell me the scenario. 4) Tell me a OTP b...
Round 2 - Client Interview 

(1 Question)

  • Q1. I have not yet get a chance to going further on Client Round Interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for scenario-based question
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Not Selected
Round 1 - Coding Test 

Asking fullstack developer level coding logic from a Qa which is really not required. Even after clearing 3 rounds with them there was no response for 2 weeks then again they make you appear for the process from step 1. Unnecessary and tedious process is being followed

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 Dec 2023. There were 2 interview rounds.

Round 1 - Assignment 

Was all good with online test

Round 2 - Technical 

(1 Question)

  • Q1. Write a java program to reverse a staring basic questions on OPPS, Selenium and TestNG

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process was quit smooth

QualityKiosk Technologies Interview FAQs

How many rounds are there in QualityKiosk Technologies Automation Tester interview?
QualityKiosk Technologies interview process usually has 2 rounds. The most common rounds in the QualityKiosk Technologies interview process are Aptitude Test and Technical.
How to prepare for QualityKiosk Technologies Automation Tester 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 QualityKiosk Technologies. The most common topics and skills that interviewers at QualityKiosk Technologies expect are Automation Testing, Selenium, Java, Appium and API Testing.

Tell us how to improve this page.

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 264 Interviews
NeoSOFT Interview Questions
4.0
 • 256 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
Tiger Analytics Interview Questions
3.7
 • 216 Interviews
Altimetrik Interview Questions
3.8
 • 210 Interviews
Incedo Interview Questions
3.3
 • 177 Interviews
Xoriant Interview Questions
4.2
 • 175 Interviews
Indium Software Interview Questions
4.1
 • 152 Interviews
View all
QualityKiosk Technologies Automation Tester Salary
based on 9 salaries
₹3 L/yr - ₹6.5 L/yr
19% less than the average Automation Tester Salary in India
View more details
Test Engineer
2.2k salaries
unlock blur

₹1.8 L/yr - ₹7.7 L/yr

Senior Test Engineer
1.6k salaries
unlock blur

₹3.4 L/yr - ₹11.8 L/yr

Softwaretest Engineer
973 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Automation Test Engineer
237 salaries
unlock blur

₹2.1 L/yr - ₹9 L/yr

Associate Test Lead
223 salaries
unlock blur

₹5 L/yr - ₹18 L/yr

Explore more salaries
Compare QualityKiosk Technologies with

Thinksoft Global Services

3.7
Compare

Cigniti Technologies

3.8
Compare

Indium Software

4.1
Compare

Maveric Systems

3.5
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