Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Innominds Software Team. If you also belong to the team, you can get access from here

Innominds Software Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 425 Reviews

Filter interviews by

Innominds Software Senior Automation Test Engineer Interview Questions, Process, and Tips

Updated 15 Feb 2023

Innominds Software Senior Automation Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com

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 - Technical 

(5 Questions)

  • Q1. What is software Test life Cycle and Bug Life cycle?
  • Ans. 

    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...

  • Answered by AI
  • Q2. What is pull request in git? how do you commit code ? how do you resolve merge conflicts ?
  • Ans. 

    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...

  • Answered by AI
  • Q3. Python : (1) what is recursion ? Give example ? (2)what are the different data types in python? (3)What is negative indexing in python ? (4) How exception is handled in python ? (5) what is with st...
  • Ans. 

    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...

  • Answered by AI
  • Q4. (1) what is chmod 644 example.txt permission ? (2) what is the use of xpath? (3) how will you find an element by xpath and by css in selenium ?
  • Ans. 

    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...

  • Answered by AI
  • Q5. (1) write a list comprehension to print a list from 1 to 10 (2) write a program to check if a given positive integer is a power of two (3) create a fibonacci series of 100 using recursive function (4) wri...
  • Ans. 

    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...

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. What is a generator ? Have you used it in real time?
  • Ans. 

    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...

  • Answered by AI
  • Q2. What is a lambda function? Give a example
  • Ans. 

    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.

  • Answered by AI
  • Q3. Print a list of odd index elements from list1 and even index elements from list2 and print the thrid list with the result set of both. list1 = [3,6,9,12,15,18,21] list2 = [4,8,12,16,20,24,28]
  • Ans. 

    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].

  • Answered by AI
  • Q4. Write a python program to print the repititve characters in a list which should exclude integers input = ['a','a',4,4,'b','c','a'] output = {'a':3}
  • Ans. 

    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

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. This is F2F with director. Asked me about the CI/CD
  • Q2. Some Basic questions on Selenium like How do you launch a browser instance? What are xpaths? Project structure ? About Sprint Cycle
  • Q3. Some python basics on list, dict

Interview Preparation Tips

Topics to prepare for Innominds Software Senior Automation Test Engineer interview:
  • Python
  • GIT
  • Selenium
  • RobotFramework
Interview preparation tips for other job seekers - Go through Python and Selenium Basics. Have knowledge on CI/CD.
Be careful in F2F. I don't have positive experience in director round. He's kind of mean.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Explain about Agile process?
  • Ans. 

    Agile process is a software development methodology that promotes adaptive planning, evolutionary development, early delivery, and continuous improvement.

    • Iterative and incremental development

    • Cross-functional teams

    • Regular feedback and adaptation

    • Customer collaboration

    • Time-boxed iterations (sprints)

    • Continuous integration and testing

  • Answered by AI
  • Q2. What is spark? what is legacy defect? find the xpath of given example how will you run the 1 test case multiple times in testng? if the some task will take 8 hours but your manager said that you should com...
  • Ans. 

    Spark is a fast and general-purpose cluster computing system. Legacy defect refers to a known issue in older versions of software. XPath is a way to navigate XML documents. TestNG allows running test cases multiple times. Approach to completing a task in less time involves prioritizing and optimizing.

    • Spark is a cluster computing system for big data processing.

    • Legacy defect is a known issue in older versions of software...

  • 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 Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Reverse a string, find the repetition of characters, Fibonacci series, selenium web elements handling. Organizational workflows.

Round 2 - Assignment 

Selenium web automation for a web demo page.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic preparation is going to be good. But, practice logic building that wins game always.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Can we call a private class feom another class?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between background keyword and before hooks in cucumber
  • Ans. 

    Background keyword runs before each scenario in a feature file, while before hooks run before each scenario in a step definition file.

    • Background keyword is used to define steps that are common to all scenarios in a feature file

    • Before hooks are used to set up preconditions or perform actions before each scenario in a step definition file

    • Background keyword is defined at the beginning of a feature file, while before hooks...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Sep 2023. There were 3 interview rounds.

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 

(1 Question)

  • Q1. Testing and oop concept java write one program of overriding/overloding
Round 3 - HR 

(1 Question)

  • Q1. General,about comapany,why leave
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Few basic coding questions like patterns
Abstraction overloading etc

Round 3 - Technical 

(2 Questions)

  • Q1. Included everything on java manual and selenium
  • Q2. What are wrappper class Typecasting Programs Manual Selenium
  • Ans. 

    Wrapper classes are classes that allow primitive data types to be used as objects.

    • Wrapper classes provide a way to use primitive data types as objects in Java.

    • They are used for typecasting and to perform various operations on primitive data types.

    • Examples of wrapper classes include Integer, Float, Boolean, etc.

    • Wrapper classes are commonly used in automation testing with tools like Selenium.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was quite hard and prepare well on subjects
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Explain about Agile process?
  • Ans. 

    Agile process is a software development methodology that promotes adaptive planning, evolutionary development, early delivery, and continuous improvement.

    • Iterative and incremental development

    • Cross-functional teams

    • Regular feedback and adaptation

    • Customer collaboration

    • Time-boxed iterations (sprints)

    • Continuous integration and testing

  • Answered by AI
  • Q2. What is spark? what is legacy defect? find the xpath of given example how will you run the 1 test case multiple times in testng? if the some task will take 8 hours but your manager said that you should com...
  • Ans. 

    Spark is a fast and general-purpose cluster computing system. Legacy defect refers to a known issue in older versions of software. XPath is a way to navigate XML documents. TestNG allows running test cases multiple times. Approach to completing a task in less time involves prioritizing and optimizing.

    • Spark is a cluster computing system for big data processing.

    • Legacy defect is a known issue in older versions of software...

  • 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 Naukri.com and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Reverse a string, find the repetition of characters, Fibonacci series, selenium web elements handling. Organizational workflows.

Round 2 - Assignment 

Selenium web automation for a web demo page.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic preparation is going to be good. But, practice logic building that wins game always.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Question was easy to medium level,
topics- Basics DSA, DBMS, CN , and Apti

Round 2 - Technical 

(1 Question)

  • Q1. They were asked what was i mention in my resume OOPs Concept, one strong subject, Deep knowledge about projects
Round 3 - HR 

(1 Question)

  • Q1. Introduction, Salary expectation, etc

Innominds Software Interview FAQs

How many rounds are there in Innominds Software Senior Automation Test Engineer interview?
Innominds Software interview process usually has 4 rounds. The most common rounds in the Innominds Software interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Innominds Software Senior Automation Test Engineer interview?

Some of the top questions asked at the Innominds Software Senior Automation Test Engineer interview -

  1. (1) write a list comprehension to print a list from 1 to 10 (2) write a program...read more
  2. Python : (1) what is recursion ? Give example ? (2)what are the different da...read more
  3. What is a generator ? Have you used it in real ti...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Innominds Software interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Innominds Software Senior Automation Test Engineer Salary
based on 4 salaries
₹11 L/yr - ₹18 L/yr
5% more than the average Senior Automation Test Engineer Salary in India
View more details

Innominds Software Senior Automation Test Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

2.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

2.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
439 salaries
unlock blur

₹7.6 L/yr - ₹28 L/yr

Software Engineer
421 salaries
unlock blur

₹4 L/yr - ₹14 L/yr

Senior Engineer
201 salaries
unlock blur

₹6.4 L/yr - ₹25.5 L/yr

Associate Software Engineer
167 salaries
unlock blur

₹2.2 L/yr - ₹8 L/yr

Engineer
152 salaries
unlock blur

₹3 L/yr - ₹14 L/yr

Explore more salaries
Compare Innominds Software with

Persistent Systems

3.5
Compare

LTIMindtree

3.9
Compare

Mphasis

3.4
Compare

TCS

3.7
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