Premium 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 Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Innominds Software Senior Automation Test Engineer Interview Questions and Answers

Updated 15 Feb 2023

9 Interview questions

A Senior Automation Test Engineer was asked
Q. Write a Python program to print the repetitive characters in a list, excluding integers. Input: ['a','a',4,4,'b','c','a']. Expected 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

A Senior Automation Test Engineer was asked
Q. Given list1 = [3,6,9,12,15,18,21] and list2 = [4,8,12,16,20,24,28], create a third list containing elements from list1 at odd indices and elements from list2 at even indices.
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].

Senior Automation Test Engineer Interview Questions Asked at Other Companies

Q1. (1) write a list comprehension to print a list from 1 to 10 (2) w ... read more
asked in Capgemini
Q2. What are the different data types in Python?
asked in Capgemini
Q3. how do you concatenate a string and integer? is it possible ?
asked in Capgemini
Q4. what is xpath ? How do you find an element ? what is the differen ... read more
asked in Capgemini
Q5. If some data is not found on the page, do a page refresh. How do ... read more
A Senior Automation Test Engineer was asked
Q. 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 statement (...
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 usi...

A Senior Automation Test Engineer was asked
Q. 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 change...

A Senior Automation Test Engineer was asked
Q. 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.

A Senior Automation Test Engineer was asked
Q. (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) write...
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 Senior Automation Test Engineer was asked
Q. (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='...

Are these interview questions helpful?
A Senior Automation Test Engineer was asked
Q. 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 ...

A Senior Automation Test Engineer was asked
Q. 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_gene...

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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Innominds Software?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. 1. My interview it has been scheduled by one consultancy. I interviewed with ITC Infotech on June 9th 2018.
  • Q2. Interviewer was very cool and supportive guy. I maximum tried gave an answers for below questions.. 1. Interviewer asked me about SD. 2. About roles and responsibilities as a Senior automation test enginee...

Senior Automation Test Engineer Interview Questions Asked at Other Companies

Q1. (1) write a list comprehension to print a list from 1 to 10 (2) w ... read more
asked in Capgemini
Q2. What are the different data types in Python?
asked in Capgemini
Q3. how do you concatenate a string and integer? is it possible ?
asked in Capgemini
Q4. what is xpath ? How do you find an element ? what is the differen ... read more
asked in Capgemini
Q5. If some data is not found on the page, do a page refresh. How do ... read more
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.

I applied via Naukri.com and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mid level of SQL nd plsql questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare lots of scenario to do it.

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Concat two linked lists in alternative way
  • Ans. 

    Concatenate two linked lists alternatively

    • Create a new linked list

    • Traverse both linked lists simultaneously

    • Alternate between adding nodes from each list to the new list

    • If one list is longer than the other, add the remaining nodes to the end of the new list

  • Answered by AI
  • Q2. Java and oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java and a certain of algo n ds

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is html and css
  • Ans. 

    HTML and CSS are markup languages used for creating and styling web pages.

    • HTML stands for HyperText Markup Language and is used for structuring content on a web page.

    • CSS stands for Cascading Style Sheets and is used for styling the appearance of a web page.

    • HTML uses tags to define elements like headings, paragraphs, images, and links.

    • CSS allows for customization of colors, fonts, layout, and other visual aspects of a w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do hard hard work smartly

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oracle.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am 3 years experience guy in oracle platform.
As per my interview experience to crackr the job in clover is not tough.

If a candidate answered 7 out of 10,then that is enough to get a job.

Thank you.

I appeared for an interview in Jan 2017.

Interview Questionnaire 

1 Question

  • Q1. /what is html? tell me about your project?
  • Ans. 

    HTML stands for Hypertext Markup Language, used for creating web pages.

    • HTML is a markup language used for structuring content on the web.

    • It consists of elements enclosed in tags, such as <p> for paragraphs.

    • Attributes can be added to elements to provide additional information.

    • Example: <h1>This is a heading</h1>

  • Answered by AI

Interview Preparation Tips

Round: aptitude
Experience: 100 questions were given with time limit of 2 hours.
Tips: don't worry it will be easy only.

Round: Technical Interview
Experience: i told what all i know, bit i din't cleared it
Tips: be strong in basics

Skills: Personnel Management
College Name: Mnm Jain Engineering College

Interview Questionnaire 

1 Question

  • Q1. Runtime pollymorphism

Interview Preparation Tips

Round: Test
Experience: I scored good.
Tips: Core java good knowledge.
Duration: 30 minutes
Total Questions: 25

Round: Technical Interview
Experience: like this many ques from core java and hibernate and sql also and I scored good.
Tips: Command over core java and sql also.

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.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more
Join Innominds Software Engineering Intelligence. Responsibly!

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 373 Interviews
3i Infotech Interview Questions
3.4
 • 150 Interviews
Microland Interview Questions
3.5
 • 137 Interviews
Sify Technologies Interview Questions
3.8
 • 130 Interviews
Mastek Interview Questions
3.6
 • 127 Interviews
Maveric Systems Interview Questions
3.5
 • 124 Interviews
Sonata Software Interview Questions
3.4
 • 122 Interviews
View all
Innominds Software Senior Automation Test Engineer Salary
based on 5 salaries
₹11 L/yr - ₹18 L/yr
5% less than the average Senior Automation Test Engineer Salary in India
View more details

Innominds Software Senior Automation Test Engineer Reviews and Ratings

based on 2 reviews

2.5/5

Rating in categories

3.5

Skill development

3.0

Work-life balance

2.5

Salary

2.5

Job security

2.5

Company culture

2.0

Promotions

3.0

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
454 salaries
unlock blur

₹8 L/yr - ₹27.5 L/yr

Software Engineer
400 salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Senior Engineer
232 salaries
unlock blur

₹7.2 L/yr - ₹25.5 L/yr

Engineer
154 salaries
unlock blur

₹4.2 L/yr - ₹9 L/yr

Principal Engineer
143 salaries
unlock blur

₹11 L/yr - ₹34 L/yr

Explore more salaries
Compare Innominds Software with

ITC Infotech

3.7
Compare

3i Infotech

3.4
Compare

Sify Technologies

3.8
Compare

Microland

3.5
Compare
write
Share an Interview