Upload Button Icon Add office photos

Filter interviews by

Atos Automation Test Engineer Interview Questions and Answers

Updated 21 Feb 2024

Atos Automation Test Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why atos? Coding skills required
  • Ans. 

    Atos is a leading global IT services company with a strong focus on automation and coding skills.

    • Atos is a well-established global IT services company known for its expertise in automation and coding.

    • They have a strong reputation for delivering innovative solutions to clients using cutting-edge technologies.

    • Working at Atos will provide opportunities to enhance coding skills and work on challenging automation projects.

    • A...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(9 Questions)

  • Q1. Difference between absolute and relative Xpath
  • Ans. 

    Absolute Xpath starts from the root element, while relative Xpath starts from any node in the DOM structure.

    • Absolute Xpath starts with a single forward slash (/) and starts selection from the root node.

    • Relative Xpath starts with a double forward slash (//) and starts selection from the current node or any node in the DOM structure.

    • Absolute Xpath is more brittle and prone to breaking if the structure of the page changes...

  • Answered by AI
  • Q2. What would be return if multiple tabs are open
  • Ans. 

    The return would be the number of tabs open in the browser.

    • The return value would be an integer representing the count of open tabs.

    • For example, if there are 5 tabs open, the return value would be 5.

  • Answered by AI
  • Q3. What are the waits in selenium
  • Ans. 

    Types of waits in Selenium include Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q4. Exceptions in selenium
  • Ans. 

    Exceptions in Selenium are errors that occur during test execution, disrupting the flow of the test script.

    • Exceptions are thrown when there is an unexpected behavior in the application under test or in the test script itself.

    • Common exceptions in Selenium include NoSuchElementException, ElementNotVisibleException, TimeoutException, and StaleElementReferenceException.

    • Handling exceptions in Selenium can be done using try-...

  • Answered by AI
  • Q5. What is feature and step definitions in cucumber BDD
  • Ans. 

    Feature files contain high-level description of the functionality to be tested, while step definitions are the implementation of the steps in the feature file using code.

    • Feature files are written in Gherkin syntax and describe the behavior of the application in plain text.

    • Step definitions are written in programming languages like Java, Ruby, etc., and map the steps in the feature file to automation code.

    • Feature files a...

  • Answered by AI
  • Q6. How to input data in cucumber
  • Ans. 

    Data can be input in Cucumber using feature files and step definitions.

    • Data can be input in feature files using scenarios and scenario outlines

    • Step definitions can be used to define the actions to be taken with the input data

    • Data tables can be used in feature files to input structured data

    • Examples keyword can be used in scenario outlines to provide multiple sets of input data

  • Answered by AI
  • Q7. Basic Java questions like access modifiers, method overloading and overriding
  • Q8. What is Test case, Test plan and Test Secenarios
  • Ans. 

    Test case is a set of conditions or variables under which a tester will determine whether a system under test satisfies requirements. Test plan is a document outlining the scope, approach, resources, and schedule of testing activities. Test scenarios are detailed descriptions of possible interactions with the system.

    • Test case: specific conditions to be tested, expected results, steps to execute

    • Test plan: overall strate...

  • Answered by AI
  • Q9. Hooks in Java
  • Ans. 

    Hooks in Java are methods that allow subclasses to override or extend the behavior of a superclass.

    • Hooks are commonly used in frameworks like JUnit and TestNG for test automation.

    • They are often used for setup and teardown operations before and after test methods.

    • Examples include @Before, @After, @BeforeClass, and @AfterClass annotations in JUnit.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The second round interview was quite challenging, with numerous questions focused on core Java topics such as data structures and linked lists. It felt less like a testing interview and more akin to a developer interview.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Java related coding and questions related to selenium

Round 2 - Technical 

(1 Question)

  • Q1. Selenium,java,testng,cucumber related questions
Round 3 - Technical 

(1 Question)

  • Q1. Framework Related Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Must have knowledge in framework that we use
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. List, lambda function, reverse string program
  • Q2. Sort the list, dictionary
Round 2 - Technical 

(1 Question)

  • Q1. OOP concept, Decorator, list to dictionary, Linux
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write a program to reverse a number
  • Ans. 

    Program to reverse a number

    • Convert the number to a string to easily manipulate each digit

    • Iterate through the string in reverse order and append each digit to a new string

    • Convert the reversed string back to an integer and return

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

(1 Question)

  • Q1. What are your expectations
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Wap for reverse string in java
  • Ans. 

    Reverse a string in Java using StringBuilder's reverse method.

    • Create a StringBuilder object with the input string

    • Use the reverse() method of StringBuilder to reverse the string

    • Convert the reversed StringBuilder object back to a string using toString()

  • Answered by AI
  • Q2. What is interface
  • Ans. 

    An interface in software development is a contract that defines the methods that a class must implement.

    • Interfaces in programming languages like Java, C#, and TypeScript provide a way to achieve abstraction and multiple inheritance.

    • Classes implementing an interface must provide concrete implementations for all the methods defined in the interface.

    • Interfaces allow for loose coupling between components, making code more

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain about the Framework that you used in Our project
  • Ans. 

    We used a modular framework with Page Object Model design pattern for our project.

    • Modular framework helped in organizing test scripts into separate modules for better maintainability

    • Page Object Model design pattern facilitated reusability of code by separating page objects from test scripts

    • Used TestNG for test execution and reporting

    • Implemented data-driven testing using Excel sheets for test data

    • Integrated with Jenkins

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. April 2024 Pune Location 1.Explain BDD in details 2.Why BDD 3.Explain Framework in details, with Project 4.How to handle dynamic element 5.If in a page you see button that is enabled only when you fill 5 m...
  • Ans. 

    BDD is a software development process that encourages collaboration between developers, QA, and non-technical stakeholders.

    • BDD stands for Behavior-Driven Development

    • It focuses on defining the behavior of the system through examples in plain text

    • Uses a common language (Gherkin syntax) to describe requirements and tests

    • Helps in improving communication and understanding between team members

    • Popular BDD tools include Cucumb

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have 6+ exp please prepare scenario based question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Mar 2023. There were 4 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 - One-on-one 

(3 Questions)

  • Q1. Program to toggle string
  • Ans. 

    Program to toggle string

    • Create an empty string variable

    • Loop through each character in the input string

    • If the character is uppercase, convert it to lowercase and add to the new string

    • If the character is lowercase, convert it to uppercase and add to the new string

    • Return the new string

  • Answered by AI
  • Q2. Program to check if string is number
  • Ans. 

    Program to check if string is number

    • Use built-in functions like isdigit() or isnumeric()

    • Handle negative numbers and decimal points separately

    • Consider edge cases like leading/trailing spaces and exponential notation

  • Answered by AI
  • Q3. Swap two strings without using third
  • Ans. 

    Swap two strings without using third

    • Use XOR operator

    • Use addition and subtraction

    • Use multiplication and division

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

(2 Questions)

  • Q1. Create alphanumeric string of given length
  • Ans. 

    To create an alphanumeric string of a given length, we can use a combination of random letters and numbers.

    • Determine the length of the string required

    • Create a list of all possible alphanumeric characters

    • Randomly select characters from the list and append them to the string until the desired length is reached

  • Answered by AI
  • Q2. Close selected window and keep rest
Round 4 - One-on-one 

(1 Question)

  • Q1. Describe framework
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop and maintain software applications.

    • A framework provides a structure for organizing code and building applications

    • It includes pre-written code libraries, modules, and functions that can be reused

    • Frameworks can be specific to a programming language or technology

    • Examples include Selenium for web testing, Robot Framework for automation testing, and Dj

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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. Selenium interview questions
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Atos Interview FAQs

How many rounds are there in Atos Automation Test Engineer interview?
Atos interview process usually has 1 rounds. The most common rounds in the Atos interview process are One-on-one Round.
How to prepare for Atos Automation Test 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 Atos. The most common topics and skills that interviewers at Atos expect are Automation Testing, Selenium, Agile, Architecture and C#.

Tell us how to improve this page.

Atos Automation Test Engineer Salary
based on 12 salaries
₹3.4 L/yr - ₹5.2 L/yr
38% less than the average Automation Test Engineer Salary in India
View more details

Atos Automation Test Engineer Reviews and Ratings

based on 6 reviews

4.4/5

Rating in categories

4.9

Skill development

4.1

Work-Life balance

4.1

Salary & Benefits

4.7

Job Security

4.0

Company culture

4.7

Promotions/Appraisal

3.5

Work Satisfaction

Explore 6 Reviews and Ratings
Associate Consultant
5.2k salaries
unlock blur

₹3 L/yr - ₹12.1 L/yr

Consultant
3.8k salaries
unlock blur

₹6.9 L/yr - ₹26.7 L/yr

Senior Consultant
1.9k salaries
unlock blur

₹10.8 L/yr - ₹34 L/yr

System Engineer
916 salaries
unlock blur

₹2 L/yr - ₹6.3 L/yr

Senior Associate
400 salaries
unlock blur

₹1.8 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Atos with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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