i
Filter interviews by
Top trending discussions
I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.
Test was based on Aptitude and Selenium, Java question.
Sorting a hashmap using keys without any method involves iterating through the keys and rearranging them in ascending order.
Iterate through the keys of the hashmap
Compare each key with the next key and swap them if they are in the wrong order
Continue this process until all keys are in ascending order
posted on 26 Aug 2024
I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.
Basic Selenium and Java questions
Frequency counter code in Java
Gmail login Automation
Seeking new challenges and growth opportunities in a dynamic work environment.
Looking for opportunities to expand my skill set and knowledge in automation testing
Seeking a more collaborative team environment to enhance my learning and development
Interested in working on cutting-edge technologies and projects to further my career
Negotiable based on experience and responsibilities
Salary expectations are based on industry standards, experience, and responsibilities of the role
Research average salaries for Qa Automation Testing Engineers in the specific location
Consider benefits, bonuses, and other perks in addition to base salary
Be prepared to discuss salary range during negotiation
posted on 30 Jan 2025
I appeared for an interview in Dec 2024.
Basic quant and reasoning questions
Selenium MCQ
Java programs with MCQ
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();
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
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
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...
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...
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.
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...
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
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"}
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
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
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
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...
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
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
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...
I applied via Company Website and was interviewed in Feb 2024. There was 1 interview round.
Selenium frameworks include Data-Driven, Keyword-Driven, Hybrid, Page Object Model, and Behavior-Driven Development.
Data-Driven Framework: Tests are driven by external data sources like Excel sheets or databases.
Keyword-Driven Framework: Tests are written using keywords and actions.
Hybrid Framework: Combination of Data-Driven and Keyword-Driven frameworks.
Page Object Model: Each web page is represented as a class, maki...
Some drawbacks of Selenium include limited support for handling non-browser windows, lack of built-in reporting capabilities, and difficulty in testing mobile applications.
Limited support for handling non-browser windows (pop-ups, alerts, etc.)
Lack of built-in reporting capabilities, requiring integration with third-party tools like TestNG or JUnit
Difficulty in testing mobile applications due to the need for additional...
Scroll handling in automation testing involves using methods to interact with scroll bars and elements on a webpage.
Use methods like scrollToElement() to scroll to a specific element on the page
Use actions class in Selenium to perform scroll actions like scrolling up, down, left, or right
Handle dynamic loading of elements by scrolling to the bottom of the page to trigger the loading of more content
Use JavaScriptExecuto
TestNG is a testing framework designed for unit testing and integration testing in Java.
TestNG stands for Test Next Generation.
It is used for writing and running tests in Java.
TestNG supports annotations like @Test, @BeforeSuite, @AfterSuite, etc.
It allows grouping of test cases, parameterization, and parallel execution.
TestNG generates detailed test reports and supports data-driven testing.
posted on 28 Mar 2023
I applied via Approached by Company and was interviewed in Feb 2023. There were 2 interview rounds.
posted on 4 Jun 2024
I applied via Referral and was interviewed in May 2024. There was 1 interview round.
HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.
HashMap is part of the Java Collections framework.
It uses hashing to store key-value pairs in an array.
Keys in a HashMap must be unique, but values can be duplicated.
HashMap allows for quick retrieval of values based on keys.
Example: HashMap<String, Integer> map = new HashMap<>();
Yes, Cucumber is a Data Driven Framework.
Cucumber allows for writing test cases in plain English using Gherkin syntax
Data can be stored in external files like Excel, CSV, or JSON and easily integrated into test scripts
Scenarios can be parameterized to run with different test data sets
Appium is an open-source tool for automating mobile applications, while PT stands for Page Object Model Testing.
Appium is used for automating mobile apps on iOS and Android platforms.
It supports multiple programming languages like Java, Python, and Ruby.
Page Object Model Testing (PT) is a design pattern used in test automation to create an object repository for web elements on a web page.
PT helps in reducing code dupli...
posted on 13 Mar 2024
I appeared for an interview in Sep 2023.
I applied via Campus Placement and was interviewed before Oct 2023. There were 2 interview rounds.
Normal aptitude test
Oops concept stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.
Oops concept focuses on creating objects that contain data in the form of fields (attributes) and code in the form of procedures (methods).
Encapsulation, inheritance, polymorphism, and abstraction are the four main principles of Oops concept.
Encapsulation refers to the bundling of data and methods th...
posted on 16 Jan 2025
Basic question were asked
Detail coding questions
I chose your company because of its reputation for innovation and commitment to quality in the field of QA automation testing.
Your company has a strong reputation in the industry for innovation and cutting-edge technology.
I was impressed by the quality of work showcased on your website and by current employees.
I believe that your company's values align with my own, particularly in the area of continuous improvement and...
Software Engineering Specialist
1.8k
salaries
| ₹9 L/yr - ₹31.9 L/yr |
Senior Analyst
1.8k
salaries
| ₹3.8 L/yr - ₹15 L/yr |
Analyst
1.6k
salaries
| ₹2.8 L/yr - ₹11.1 L/yr |
Software Engineer
1.5k
salaries
| ₹5 L/yr - ₹20 L/yr |
Business Analyst
1.1k
salaries
| ₹6 L/yr - ₹24 L/yr |
Accenture
Wipro
Cognizant
Capgemini