Upload Button Icon Add office photos

Filter interviews by

OneYes InfoTech Solutions Software Testing Executive Interview Questions and Answers

Updated 22 May 2024

OneYes InfoTech Solutions Software Testing Executive Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Learn quantitive and reasoning

Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked basic testing interview questions
  • Q2. Smoke Sanity Regression Bug life cycle Severity and priority

Interview Preparation Tips

Topics to prepare for OneYes InfoTech Solutions Software Testing Executive interview:
  • Selenium IDE
  • Java
  • Selenium webdriver
Interview preparation tips for other job seekers - All the best for the interview

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Oct 2022. 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 - Aptitude Test 

I am giving best performance for aptitude test

Round 3 - Coding Test 

The generation of source code is called coding

Round 4 - Group Discussion 

When a group of people comes together to discuss a certain topic.

Interview Preparation Tips

Topics to prepare for Wipro Software Testing Executive interview:
  • Java
  • Software Testing
Interview preparation tips for other job seekers - As a fresher, I am interested in learning new things,As a student , I learn things theoretically but I am waiting for an opportunity to implement them in a practical way if you hire me I will do my best

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

Round 1 - Aptitude Test 
Round 2 - Coding Test 

C language

Round 3 - HR 

(8 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Share details of your previous job.
  • Q3. Tell me about yourself.
  • Q4. What are your strengths and weaknesses?
  • Q5. What are your salary expectations?
  • Q6. What is your family background?
  • Q7. Why should we hire you?
  • Q8. Where do you see yourself in 5 years?
Round 4 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips

Interview Preparation Tips

Interview preparation tips for other job seekers - My first interview is very important for me ,so give me advice
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Jeneral knowledge questions

Round 2 - Technical 

(3 Questions)

  • Q1. What is datatype
  • Ans. 

    Datatype is a classification of data which tells the compiler or interpreter how the programmer intends to use the data.

    • Datatypes specify the type of data that a variable can hold.

    • Examples of datatypes include integers, floating-point numbers, characters, and strings.

    • In programming languages like Java, C++, and Python, datatypes are used to define variables and functions.

  • Answered by AI
  • Q2. Date Types different types
  • Ans. 

    Date types refer to different ways dates can be represented in software.

    • Date

    • Time

    • DateTime

    • Timestamp

    • Interval

  • Answered by AI
  • Q3. Statement of DDL, DML, DQL.
  • Ans. 

    DDL stands for Data Definition Language, DML stands for Data Manipulation Language, and DQL stands for Data Query Language.

    • DDL is used to define the structure of database objects like tables, indexes, etc. Example: CREATE TABLE.

    • DML is used to manipulate data in the database like inserting, updating, deleting records. Example: INSERT INTO.

    • DQL is used to retrieve data from the database using queries. Example: SELECT * FR

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you giving me this opportunity. My name is nagurbi.i have coplited my degree Bsc computers in chakradhar degree college in macherla. My father name is Dastagiri and mother name is mastanbi.

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions with 28 aptitude question in 1 hrs .

Round 2 - Technical 

(1 Question)

  • Q1. Data Structure,Java questions and basics of the sql
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(10 Questions)

  • Q1. Locatord in selenium
  • Ans. 

    Locator in Selenium is used to identify web elements on a web page.

    • Locators are used to find and interact with elements on a web page.

    • Common locators include ID, name, class name, tag name, link text, and partial link text.

    • XPath and CSS selectors are also commonly used locators in Selenium.

    • Example: driver.findElement(By.id("username"));

  • Answered by AI
  • Q2. ID,linktexr,lass name,xpath,css selector
  • Q3. Action class in selenium
  • Ans. 

    Action class in Selenium is used to perform complex user interactions like drag and drop, double click, etc.

    • Action class is part of the Selenium WebDriver API

    • It is used to perform advanced user interactions like drag and drop, double click, etc.

    • Actions class is instantiated by creating an object of Actions class and passing the WebDriver instance as a parameter

    • Actions class methods include moveToElement, click, context

  • Answered by AI
  • Q4. Used for mouse and keyboard actions
  • Q5. Select class in selenium
  • Ans. 

    In Selenium, the Select class is used to work with dropdown elements on a web page.

    • The Select class is part of the org.openqa.selenium.support.ui package

    • It provides methods to interact with dropdown elements such as selecting options by visible text, value, or index

    • To use the Select class, you first need to locate the dropdown element using a locator like ID, name, or class name

  • Answered by AI
  • Q6. Used to handle dropdowns
  • Q7. Waits in selenium
  • Ans. 

    Waits in Selenium are used to synchronize the test execution with the application's behavior.

    • Waits help in handling synchronization issues between test scripts and web elements

    • Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait

    • Example: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("elementID")));

  • Answered by AI
  • Q8. Explicit,implicit,fluent waits def
  • Ans. 

    Explicit, implicit, and fluent waits are different types of waits used in automation testing to handle synchronization issues.

    • Explicit wait is used to wait for a certain condition to be met before proceeding with the test execution. It is defined by the tester in the code.

    • Implicit wait is used to wait for a certain amount of time before throwing an exception if the element is not found. It is defined globally for the e...

  • Answered by AI
  • Q9. What kind of reports
  • Q10. Testng reports have been used

Skills evaluated in this interview

Round 1 - Aptitude Test 

First round will be aptitude

Round 2 - Technical 

(1 Question)

  • Q1. Technical questions related to software testing and scenario based questions and puzzles will be there
Round 3 - One-on-one 

(1 Question)

  • Q1. Some logical puzzles and logical thinking questions and few technical questions will be asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about testing and puzzles, all the best

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

I applied via Referral and was interviewed in Jan 2022. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Discussion happened about location and Date of Joining
  • Q2. Most of the questions come from domain specific

I applied via Naukri.com and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. About previous project details, communication, QA testing technical questions.
  • Q2. I answered good way..
  • Q3. Still there end no answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Some recruiting companies not replay at all.. Why?

OneYes InfoTech Solutions Interview FAQs

How many rounds are there in OneYes InfoTech Solutions Software Testing Executive interview?
OneYes InfoTech Solutions interview process usually has 2 rounds. The most common rounds in the OneYes InfoTech Solutions interview process are Aptitude Test and One-on-one Round.
What are the top questions asked in OneYes InfoTech Solutions Software Testing Executive interview?

Some of the top questions asked at the OneYes InfoTech Solutions Software Testing Executive interview -

  1. Smoke Sanity Regression Bug life cycle Severity and prior...read more
  2. Asked basic testing interview questi...read more

Tell us how to improve this page.

OneYes InfoTech Solutions Software Testing Executive Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Software Developer
5 salaries
unlock blur

₹1.9 L/yr - ₹2.4 L/yr

Softwaretest Engineer
4 salaries
unlock blur

₹2.5 L/yr - ₹2.6 L/yr

Explore more salaries
Compare OneYes InfoTech Solutions with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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