i
Innominds Software
Filter interviews by
Clear (1)
I applied via Naukri.com
Software Test Life Cycle (STLC) is a sequence of activities carried out to ensure quality in software testing. Bug Life Cycle is a process followed by the testing team to track and manage bugs found during testing.
STLC includes planning, designing, executing, and reporting of tests.
Bug Life Cycle includes bug identification, reporting, assigning, fixing, retesting, and closing.
STLC ensures that the software meets the r...
Pull request is a feature in git that allows developers to review and merge code changes.
A pull request is created when a developer wants to merge their changes into the main branch
Other developers can review the changes and leave comments or suggestions
Once the changes are approved, the pull request can be merged into the main branch
To commit code, use the 'git commit' command with a message describing the changes mad...
Python interview questions covering recursion, data types, exception handling, memory management, and more.
Recursion is a function that calls itself. Example: factorial function.
Python data types include integers, floats, strings, lists, tuples, and dictionaries.
Negative indexing allows you to access elements from the end of a list or string. Example: my_list[-1] returns the last element.
Exceptions are handled using tr...
Answers to technical questions for Senior Automation Test Engineer position.
chmod 644 example.txt permission means the owner has read and write access, while others have only read access.
XPath is a language used to locate elements in an XML document or HTML page.
To find an element by XPath in Selenium, use the findElement() method with the By.xpath() locator. For example: driver.findElement(By.xpath("//input[@id='usern...
A technical interview question for Senior Automation Test Engineer involving list comprehension, power of two, fibonacci series, missing numbers, and character count.
Use range() function to generate a list from 1 to 10 in list comprehension
Check if the given integer is a power of two by using bitwise AND operator
Use recursion to create a fibonacci series of 100
Find missing numbers from a list by comparing it with a ran...
A generator is a function that returns an iterator object. It generates a sequence of values on the fly.
Generators are used to create iterators for lazy evaluation of a sequence of values.
They are memory efficient as they generate values on the fly instead of storing them in memory.
Generators are used in Python for creating infinite sequences, reading large files, and processing data in chunks.
Example: def my_generator...
A lambda function is a small anonymous function that can take any number of arguments and return a single value.
Lambda functions are also known as anonymous functions or closures.
They are often used as arguments for higher-order functions, such as map, filter, and reduce.
Example: lambda x: x**2 defines a lambda function that takes one argument and returns its square.
Print odd index elements from list1 and even index elements from list2 and combine them into a third list.
Loop through both lists and use conditional statements to append the elements to the third list.
Use the modulo operator to check for odd/even index.
Final list should contain [6, 4, 12, 12, 18, 20].
Python program to print repetitive characters in a list excluding integers
Use a dictionary to store the count of each character
Iterate through the list and check if the character is a string and not an integer
Print the characters with count greater than 1
Top trending discussions
posted on 19 Feb 2020
I applied via Naukri.com and was interviewed in Aug 2019. There were 4 interview rounds.
posted on 17 Jun 2018
posted on 21 Mar 2024
I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.
posted on 25 Aug 2021
I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 3 interview rounds.
Abstract class is a class that cannot be instantiated and can have both abstract and non-abstract methods. Interface is a collection of abstract methods and constants.
Abstract class can have constructors while interface cannot
A class can implement multiple interfaces but can only inherit from one abstract class
Abstract class can have instance variables while interface cannot
Abstract class is used for code reusability w...
Windows and frames can be handled in Selenium using switchTo() method.
Use driver.switchTo().window() to switch between windows.
Use driver.switchTo().frame() to switch between frames.
To switch back to the default content, use driver.switchTo().defaultContent().
Exceptions in Selenium are errors that occur during test execution.
Selenium throws exceptions when it encounters errors during test execution
Common exceptions include NoSuchElementException, TimeoutException, and StaleElementReferenceException
Handling exceptions is important for creating stable and reliable test scripts
posted on 18 Aug 2023
I applied via Naukri.com and was interviewed in Jul 2023. There were 2 interview rounds.
API testing with Rest API involves testing the functionality, performance, and security of API endpoints.
Understand the API documentation to identify endpoints, parameters, and expected responses
Test different HTTP methods like GET, POST, PUT, DELETE
Verify response codes, headers, and payload data
Perform boundary value analysis and negative testing
Use tools like Postman or RestAssured for automation testing
Validate aut...
I applied via Naukri.com and was interviewed before Jul 2021. There were 3 interview rounds.
Java code to reverse a string with exception handling and waits in Selenium
Use StringBuilder to reverse the string
Use try-catch block for exception handling
Use implicit or explicit waits in Selenium for synchronization
Example: String originalString = "hello"; StringBuilder reversedString = new StringBuilder(originalString).reverse();
Example: try { // code that may throw exception } catch (Exception e) { // handle excep
posted on 23 Nov 2023
I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.
posted on 10 Nov 2024
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
Code to count the occurrences of each letter in a string and print the result
Iterate through each character in the string
Use a dictionary to store the count of each letter
Print the count of each letter at the end
Appium server can be started using command line, programmatically in code, or using Appium desktop app.
Start Appium server using command line by running 'appium' command
Start Appium server programmatically in code using Appium server programmatically in code using AppiumDriverLocalService class
Start Appium server using Appium desktop app by launching the app and starting the server
Tests can be run parallel for mobile devices using test automation frameworks like Appium or Espresso.
Use test automation frameworks like Appium or Espresso to run tests parallel for mobile devices
Leverage cloud-based testing platforms like Sauce Labs or BrowserStack for parallel testing on multiple devices
Implement parallel test execution using tools like TestNG or JUnit in combination with Appium or Espresso
Utilize d...
Automating OTP in mobile involves using automation tools to interact with the OTP input field and validate the received OTP.
Use automation tools like Appium or Espresso to interact with the OTP input field
Extract the OTP from the message received on the mobile device
Validate the extracted OTP with the OTP input field
Handle scenarios where OTP validation fails
Desired capabilities are a set of properties or attributes that define the behavior of a browser or mobile device in Selenium automation testing.
Desired capabilities are key-value pairs that are used to configure the WebDriver instances in Selenium.
They can be used to set properties like browser name, version, platform, and other settings.
For example, setting 'browserName' to 'chrome' will launch the Chrome browser dur
To run tests on iOS or Android devices using Appium, specify the platformName capability in desired capabilities.
Specify platformName capability as 'iOS' for iOS devices and 'Android' for Android devices
Include other necessary desired capabilities like deviceName, platformVersion, appPackage, appActivity, etc.
Example: capabilities.setCapability('platformName', 'iOS');
Setting up automation for iOS devices involves using tools like Appium and Xcode for testing mobile applications.
Install Xcode on your Mac machine
Set up Appium for iOS automation
Connect your iOS device to the Mac machine
Create test scripts using Appium for iOS apps
Execute the test scripts on the connected iOS device
posted on 1 Feb 2024
Some of the top questions asked at the Innominds Software Senior Automation Test Engineer interview -
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Senior Software Engineer
445
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
388
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Engineer
214
salaries
| ₹0 L/yr - ₹0 L/yr |
Associate Software Engineer
168
salaries
| ₹0 L/yr - ₹0 L/yr |
Engineer
158
salaries
| ₹0 L/yr - ₹0 L/yr |
Persistent Systems
LTIMindtree
Mphasis
TCS