Upload Button Icon Add office photos
Engaged Employer

i

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

Cigniti Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cigniti Technologies Senior Automation Engineer Interview Questions, Process, and Tips

Updated 17 May 2024

Top Cigniti Technologies Senior Automation Engineer Interview Questions and Answers

Cigniti Technologies Senior Automation Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Write xpath for given feature in Flipkart website
  • Ans. 

    Xpath for a feature in Flipkart website

    • Use Chrome DevTools to inspect the element and generate xpath

    • Start with double forward slash (//) to select any element on the page

    • Use attributes like class, id, text, etc. to narrow down the selection

    • Consider using contains() function for dynamic elements

  • Answered by AI
  • Q2. Explain testing annotations
  • Ans. 

    Testing annotations are used in automation testing to provide additional information about test methods.

    • Annotations are used to provide metadata about the test methods in automation testing frameworks.

    • Annotations can be used to specify the order of test execution, dependencies between tests, and other configurations.

    • Examples of testing annotations include @Test, @Before, @After, @DataProvider, @Parameters, etc.

  • Answered by AI
  • Q3. Explain static and runtime polymorphism
  • Ans. 

    Static polymorphism is resolved at compile time while runtime polymorphism is resolved at runtime.

    • Static polymorphism is achieved through function overloading and operator overloading.

    • Examples of static polymorphism include compile-time polymorphism in C++.

    • Runtime polymorphism is achieved through virtual functions and function overriding.

    • Examples of runtime polymorphism include dynamic polymorphism in Java.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2023. There were 3 interview rounds.

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 

(4 Questions)

  • Q1. Interview questions related to Test automation.
  • Q2. How to run multiple test cases in parallel using multithreading?
  • Ans. 

    To run multiple test cases in parallel using multithreading, create separate threads for each test case and manage synchronization.

    • Create a thread pool to manage multiple threads for running test cases in parallel.

    • Implement synchronization mechanisms like locks or semaphores to prevent race conditions.

    • Ensure that the test cases are independent of each other to avoid interference.

    • Use a testing framework that supports pa...

  • Answered by AI
  • Q3. Fixtures and markers related questions
  • Q4. What kind of technologies used in test framework that you developed and explain a bit and related questions.
Round 3 - Behavioral 

(2 Questions)

  • Q1. Career history and Technlogies worked.
  • Q2. Projects worked and why left the last company etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - My experience was extremely pathetic. I compromised my salary expectations by 5-6 lacs down so that they can consider me for managerial round so they considered and they promised that if I qualified managerial round they will consider me for the HR discussion but it was not happened and finally they said they have take another candidate who worked on banking domain for test automation. So wasted my week when they already wanted to take candidate who have banking domain knowledge.

To much frustrated with this company. Please guys first confirm what product domain they want even for testing too ask them and then attend the interview else they will waste your time and output is zero.

My first round rescheduled 3 times and then first round and managerial round and no hr discussion even after positive feedback.

Skills evaluated in this interview

Senior Automation Engineer Interview Questions Asked at Other Companies

Q1. 1. Print numbers from 1 to 100 without using any loop ? 2. How do ... read more
Q2. 1. In your framework how have you and why have used abstract clas ... read more
Q3. What is jenkins? Do you have experience in setting up pipeline in ... read more
Q4. What is BDD? what difference between BDD and cucumber? Are you aw ... read more
Q5. What is UpCasting? and why we can't use downCasting in OOPS?

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jan 2021. There were 2 interview rounds.

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. Kafka architecture and APIs
  • Q2. Java and microservices

Interview Preparation Tips

Topics to prepare for Apexon Senior Software Engineer interview:
  • Java
  • Devops
  • Cloud Computing
Interview preparation tips for other job seekers - Keep your concepts clear and your answers precise.

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

Interview Questionnaire 

1 Question

  • Q1. Core java question. and basic question on angular 8. Difference between promise and graph

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up basic.

I applied via Approached by Company and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical interview with my primary skill set Where all details asked about technology And given one program to do using primary skill
Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion Questions about why to change org And More specific to HR questions About yourself
Round 3 - Managiral 

(1 Question)

  • Q1. Question about last project work About Yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is growing with different skillset and domain

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 3 interview rounds.

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 - Coding Test 

They will ask you simple programs to check your logical abilities.

Round 3 - HR 

(2 Questions)

  • Q1. Normal Salary discussion round
  • Q2. Questions about family and location

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well whatever you have mentioned in your resume and be confident about it.

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. DS Questions 1. kth largest element. 2. Implement merge sort
  • Q2. Springboot basics, oops, collection api

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepeare DS well

Interview Questionnaire 

2 Questions

  • Q1. 1.Implement merge sort. 2. Kth largest element.
  • Ans. 

    Implement merge sort and find kth largest element in an array.

    • Merge sort is a divide and conquer algorithm that recursively divides the array into two halves, sorts them and then merges them.

    • Kth largest element can be found using quick select algorithm or by sorting the array and returning the kth element from the end.

    • Merge sort has a time complexity of O(nlogn) and space complexity of O(n).

    • Quick select has a time comp...

  • Answered by AI
  • Q2. Springboot RestTemplate, singleton, oops

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Jun 2021. There were 5 interview rounds.

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 - Coding Test 

Its a simple hackathon MCQ questions based on your skills.

Round 3 - Technical 

(3 Questions)

  • Q1. Technical round from Xoriant was easy but tricky, question based on Agile Methodology, All the technologies and projects you mentioned in resume, random questions on development/testing experience and othe...
  • Q2. Tell me about your team you worked previously, team size, team contribution, roles of the team, modules worked in team or independently.
  • Q3. Tell me about any different technical challeng/issue/problems you faced in last project.
Round 4 - Technical 

(1 Question)

  • Q1. Project Technical Interview
Round 5 - HR 

(2 Questions)

  • Q1. What is your preferred location
  • Q2. Are you able to relocate

Interview Preparation Tips

Interview preparation tips for other job seekers - Take time to prepare your resume carefully.
Prepare each and everything written in resume.
Work on Leet codes or on DSA, algorithms.
Be confident 😊

I appeared for an interview in Aug 2020.

Interview Questionnaire 

8 Questions

  • Q1. Position was for UI - Fundamentals of JavaScript (Closure, Promises, Event Loop, filter vs map, Event delegation)
  • Q2. Lifecycle of React Component, State vs Props, Optimization techniques, Redux vs Context
  • Q3. Coding challenge (JS) - remove duplicate entries from array
  • Ans. 

    Remove duplicate entries from array of strings using JavaScript

    • Use Set to remove duplicates

    • Convert Set back to array

    • Use spread operator to convert Set to array

  • Answered by AI
  • Q4. Coding Challenge (JS) - determine if words in given array are anagram or not
  • Ans. 

    Determines if words in given array are anagram or not using JS

    • Create a function that takes an array of strings as input

    • Loop through the array and sort each string alphabetically

    • Compare the sorted strings to check if they are equal

    • Return true if all strings are anagrams, else false

  • Answered by AI
  • Q5. Client Round (1) - Questions on design system, coding challenge - Let's try to create a modal component in React JS from scratch
  • Q6. Client Round (2) - Questions based on scenarios to test your thinking ability and problem solving approach
  • Q7. Client Round (3) - Questions on all the technologies that you have mentioned in your CV. Additional questions on Agile, DevOps and your understanding of CI-CD.
  • Q8. Client Round (4) - Coding challenge - implement/rewrite any inbuilt method provided by JS (e.g. Array.map, Array.filter, function.bind)

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for fundamentals of JS.
Answering questions of React would be easy if you already work on it.
Try to solve at least 5 problems on Hacker Rank or Hacker Earth, before appearing for interview.
That would help you prepare mentally and logically to bare with the process and develop an attitude of keep trying.

Good luck!

Skills evaluated in this interview

Cigniti Technologies Interview FAQs

How many rounds are there in Cigniti Technologies Senior Automation Engineer interview?
Cigniti Technologies interview process usually has 2 rounds. The most common rounds in the Cigniti Technologies interview process are Technical, Resume Shortlist and Behavioral.
How to prepare for Cigniti Technologies Senior Automation Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cigniti Technologies. The most common topics and skills that interviewers at Cigniti Technologies expect are Selenium, Automation, Java, Automation Testing and C#.
What are the top questions asked in Cigniti Technologies Senior Automation Engineer interview?

Some of the top questions asked at the Cigniti Technologies Senior Automation Engineer interview -

  1. How to run multiple test cases in parallel using multithreadi...read more
  2. Write xpath for given feature in Flipkart webs...read more
  3. Explain static and runtime polymorph...read more

Tell us how to improve this page.

Cigniti Technologies Senior Automation Engineer Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 277 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 222 Interviews
Incedo Interview Questions
3.1
 • 184 Interviews
Xoriant Interview Questions
4.1
 • 184 Interviews
Globant Interview Questions
3.8
 • 175 Interviews
Iris Software Interview Questions
4.0
 • 151 Interviews
ThoughtWorks Interview Questions
3.9
 • 149 Interviews
Apexon Interview Questions
3.3
 • 141 Interviews
View all
Cigniti Technologies Senior Automation Engineer Salary
based on 30 salaries
₹8.5 L/yr - ₹25 L/yr
28% more than the average Senior Automation Engineer Salary in India
View more details

Cigniti Technologies Senior Automation Engineer Reviews and Ratings

based on 3 reviews

4.6/5

Rating in categories

4.3

Skill development

4.6

Work-life balance

4.0

Salary

4.9

Job security

4.6

Company culture

3.6

Promotions

4.6

Work satisfaction

Explore 3 Reviews and Ratings
Senior Test Engineer
618 salaries
unlock blur

₹5.5 L/yr - ₹21.4 L/yr

Senior Engineer
592 salaries
unlock blur

₹7 L/yr - ₹28 L/yr

Test Lead
387 salaries
unlock blur

₹8 L/yr - ₹28 L/yr

Test Engineer
366 salaries
unlock blur

₹4 L/yr - ₹13.8 L/yr

Project Lead
275 salaries
unlock blur

₹9.4 L/yr - ₹31 L/yr

Explore more salaries
Compare Cigniti Technologies with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

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