Upload Button Icon Add office photos

Filter interviews by

Mithi Software Technologies Automation Testing Interview Questions and Answers

Updated 17 Oct 2019

Mithi Software Technologies Automation Testing Interview Experiences

1 interview found

Interview Questionnaire 

1 Question

  • Q1. Sir/Mam, I am fresher passed out in 2018. I Trained in a few courses like Manual testing, Structural query language(Database), Java, automation testing(selenium). Knowledge about third-party tools like MA...

Interview Preparation Tips

Interview preparation tips for other job seekers - I didn't attend any interview in amiti software technologies

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-

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

Round 1 - Technical 

(13 Questions)

  • Q1. Write an Xpath for an Anchor tag
  • Ans. 

    Xpath for an Anchor tag in Automation Testing

    • Use the 'a' tag in the Xpath expression to target anchor tags

    • Use '@href' attribute to specify the link of the anchor tag

    • Example: //a[@href='https://www.example.com']

  • Answered by AI
  • Q2. What are the challenges faced in your automation project and how did you overcome them ?
  • Ans. 

    Challenges faced in automation project and how they were overcome

    • Lack of skilled resources - Conducted training sessions to upskill team members

    • Unstable test environment - Implemented robust error handling mechanisms

    • Changing requirements - Utilized agile methodologies to adapt quickly

    • Integration issues with third-party tools - Collaborated with vendors for solutions

  • Answered by AI
  • Q3. Explain Selenium Architecture
  • Ans. 

    Selenium Architecture is a framework that consists of different components for automated testing of web applications.

    • Selenium WebDriver: It is the core component that allows interaction with web elements.

    • Selenium Grid: It enables parallel execution of tests across different browsers and environments.

    • Selenium IDE: It is a record and playback tool for creating test scripts.

    • Selenium RC (Remote Control): It is the predeces...

  • Answered by AI
  • Q4. Have you ever faced synchronization problem ? How did you overcome them ?
  • Ans. 

    Yes, I have faced synchronization problems while automating tests.

    • Yes, I have encountered synchronization issues when elements load at different speeds on a webpage.

    • To overcome this, I have used explicit waits in Selenium to wait for specific conditions before proceeding with the test.

    • I have also used implicit waits to set a default waiting time for the elements to load.

    • In some cases, I have used Thread.sleep() to paus...

  • Answered by AI
  • Q5. What are the exceptions handled other than NosuchElementException
  • Ans. 

    Other exceptions handled in automation testing besides NoSuchElementException

    • ElementNotVisibleException - when element is present in DOM but not visible on the page

    • StaleElementReferenceException - when element is no longer attached to the DOM

    • TimeoutException - when a command does not complete in a specific time frame

    • NoSuchWindowException - when the window target to be switched doesn't exist

    • InvalidElementStateException ...

  • Answered by AI
  • Q6. Explain OOPS concepts
  • Ans. 

    OOPS concepts are fundamental principles of Object-Oriented Programming, including inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI
  • Q7. Difference between Relative and Absolute xpath
  • Ans. 

    Relative xpath is based on the current position of an element, while absolute xpath starts from the root element.

    • Relative xpath is shorter and less prone to breaking with changes in the DOM structure.

    • Absolute xpath is longer and more specific, starting from the root element of the HTML document.

    • Relative xpath is preferred for dynamic web elements, while absolute xpath is more suitable for static elements.

    • Example: Relat...

  • Answered by AI
  • Q8. Java Program to reverse a string
  • Ans. 

    Java program to reverse a string

    • Create a StringBuilder object

    • Use the reverse() method to reverse the string

    • Convert the StringBuilder object back to a string

  • Answered by AI
  • Q9. What is framework ? Explain the frameworks you worked on in your project?
  • Ans. 

    A framework is a set of guidelines, coding standards, concepts, and practices that provide structure and support for automated testing.

    • Framework helps in organizing and executing automated tests efficiently.

    • Common frameworks include Data-Driven, Keyword-Driven, Hybrid, and Behavior-Driven Development (BDD).

    • In my project, I have worked on a Data-Driven framework where test data is separated from test scripts for easy ma

  • Answered by AI
  • Q10. TestNG-How to re-run the failed Testcases
  • Ans. 

    TestNG provides the ability to re-run failed test cases using the 'retryAnalyzer' feature.

    • Implement a custom 'IRetryAnalyzer' class to define the retry logic for failed test cases.

    • Specify the 'retryAnalyzer' attribute in the @Test annotation with the custom retry analyzer class.

    • Set the 'retryAnalyzer' attribute to the custom class name in the testng.xml file to apply the retry logic globally.

    • Failed test cases will be a...

  • Answered by AI
  • Q11. What is Interface in Java
  • Ans. 

    Interface in Java is a reference type in Java, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • An interface is a blueprint of a class that can have abstract methods and constants.

    • Interfaces are used to achieve abstraction and multiple inheritance in Java.

    • Classes can implement multiple interfaces but can only extend one class.

    • Example: interface Sh...

  • Answered by AI
  • Q12. Explain Fluent wait ,implict ,explicit wait
  • Ans. 

    Fluent wait, implicit wait, and explicit wait are different types of wait strategies used in automation testing to handle synchronization issues.

    • Fluent wait is a dynamic wait mechanism in Selenium WebDriver that waits for a condition to be true with a specified polling frequency.

    • Implicit wait is a global wait applied to all elements in the WebDriver instance, allowing a certain amount of time for elements to load befor...

  • Answered by AI
  • Q13. TestNG supports crossbrowser testinh
  • Ans. 

    Yes, TestNG supports crossbrowser testing by allowing the execution of test cases on multiple browsers in parallel.

    • TestNG allows the use of @Parameters annotation to pass browser type as a parameter to test methods.

    • TestNG can be integrated with Selenium WebDriver to run tests on different browsers like Chrome, Firefox, and Safari.

    • TestNG provides the flexibility to run tests in parallel on multiple browsers for faster e

  • Answered by AI

Skills evaluated in this interview

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

I applied via Site and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Python , java, c, c++, c sharp, azure

Round 2 - Aptitude Test 

Arithmetic , reasoning, english, logical, puzzle,

Interview Preparation Tips

Interview preparation tips for other job seekers - More work on aptitude and codeing part
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is the deference between methods and constructors
  • Ans. 

    Methods are functions within a class that define behavior, while constructors are special methods used to initialize objects.

    • Methods are used to perform actions or operations within a class.

    • Constructors are special methods used to initialize objects when they are created.

    • Methods can have return types and parameters, while constructors do not have return types and have the same name as the class.

    • Example: Method 'calcula...

  • Answered by AI
  • Q2. What is interface
  • Ans. 

    An interface in automation testing refers to the point of interaction between two systems or components.

    • An interface defines the methods that a class must implement, without specifying how they are implemented.

    • Interfaces allow for loose coupling between different components, making it easier to change or update one without affecting the other.

    • In automation testing, interfaces are used to interact with the application u...

  • Answered by AI
  • Q3. Where we can use final keyboard
  • Ans. 

    The final keyword in Java can be used to declare constants, prevent method overriding, and prevent inheritance.

    • To declare constants in Java

    • To prevent method overriding in Java

    • To prevent inheritance in Java

  • Answered by AI
  • Q4. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q5. What is inheritance and types of inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, hierarchical inheritance

    • Example: Class B inherits from Class A, Class C inherits from Class B, creating a multilevel inheritance

    • Example: Class D inherits from Class A and Class B, demonstrating multiple inherita

  • Answered by AI

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself?basics on c , then about projects

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

I applied via LinkedIn and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What's is different between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports object-oriented programming while C does not.

    • C++ has classes and templates while C does not.

    • C++ has better support for function overloading and default arguments.

    • C++ has a standard library that includes many useful functions.

    • C++ allows for both procedural and object-oriented programming.

    • C++ is generally considered to be a more complex langu

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont show your weakness

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 157 Interviews
View all
Software Developer
82 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Scrum Master
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Automation Test Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mithi Software Technologies with

Zoho

4.3
Compare

Freshworks

3.5
Compare

TCS

3.7
Compare

Infosys

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