Upload Button Icon Add office photos
Engaged Employer

i

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

GlobalLogic Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

GlobalLogic Qa Automation Testing Engineer Interview Questions, Process, and Tips

Updated 6 Feb 2024

Top GlobalLogic Qa Automation Testing Engineer Interview Questions and Answers

  • Q1. selenium: what are selenium components, what are the different locators in selenium, what is selenium web driver, write a xpath for a given element on a web page
  • Q2. How do you convert json object to string and vice versa?
  • Q3. Robot Framework : what are standard libraries in Robot Framework? Explain robot framework architechture, what is setup and teardown, write a sample login script using rob ...read more
View all 11 questions

GlobalLogic Qa Automation Testing Engineer Interview Experiences

2 interviews found

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. What is cypress ,difference between cypress and selenium
  • Ans. 

    Cypress is a JavaScript-based end-to-end testing framework. It differs from Selenium in terms of architecture, ease of use, and speed.

    • Cypress is a JavaScript-based testing framework for web applications.

    • It provides a simple and intuitive API for writing tests.

    • Cypress runs directly in the browser and can access everything on the page.

    • Unlike Selenium, Cypress does not use WebDriver and has a different architecture.

    • Cypres...

  • Answered by AI
  • Q2. Cypress folder structure and and its assertions
  • Ans. 

    Cypress folder structure and its assertions

    • Cypress follows a specific folder structure for organizing test files

    • The 'fixtures' folder contains static data used in tests

    • The 'integration' folder contains the actual test files

    • The 'plugins' folder contains custom plugins and tasks

    • The 'support' folder contains reusable functions and commands

    • Cypress provides various assertions for validating test results

    • Common assertions inc...

  • Answered by AI
  • Q3. What is assertions
  • Ans. 

    Assertions are statements that verify the expected behavior of a software application during testing.

    • Assertions are used to validate whether a certain condition is true or false.

    • They help in identifying bugs and ensuring the correctness of the software.

    • Assertions can be used to check the values of variables, compare expected and actual results, or verify the presence of certain elements.

    • Examples of assertions include a...

  • Answered by AI
  • Q4. Api testing using cypress
  • Ans. 

    Cypress is a powerful tool for API testing, allowing for easy automation and assertion of API endpoints.

    • Cypress provides a simple and intuitive syntax for writing API tests

    • It supports making HTTP requests and asserting responses

    • Cypress allows for easy mocking and stubbing of API calls

    • It provides detailed logs and error messages for debugging

    • Cypress integrates well with other testing frameworks and tools

  • Answered by AI
  • Q5. Architecture about cypress
  • Ans. 

    Cypress is a JavaScript-based end-to-end testing framework that runs directly in the browser.

    • Cypress allows for easy and fast testing of web applications.

    • It provides a rich set of APIs for interacting with elements and making assertions.

    • Cypress runs directly in the browser, eliminating the need for Selenium or other external drivers.

    • It supports modern JavaScript frameworks like React, Angular, and Vue.

    • Cypress provides ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2022. 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 Resume tips
Round 2 - Technical 

(7 Questions)

  • Q1. Intro : tell me about yourself, roles and responsibilities, why do you want to join global logic ?
  • Ans. 

    I am a QA Automation Testing Engineer with experience in various roles and responsibilities. I am interested in joining Global Logic for its global presence and reputation in the industry.

    • I have worked as a QA Automation Testing Engineer for the past 5 years.

    • My roles and responsibilities include designing and implementing automated test scripts, executing test cases, and reporting defects.

    • I have experience in using too...

  • Answered by AI
  • Q2. Python : diff between list and tuple, decorators and fixtures, fibonacci program, print a multiplication table, for a given input print the value from a given dictionary
  • Q3. Selenium: what are selenium components, what are the different locators in selenium, what is selenium web driver, write a xpath for a given element on a web page
  • Ans. 

    Selenium components include Selenium IDE, Selenium RC, Selenium WebDriver. Different locators are ID, Name, Class Name, Tag Name, Link Text, Partial Link Text, CSS Selector and XPath. Selenium WebDriver is a tool used to automate web application testing. XPath is a language used to navigate through XML documents and web pages.

    • Selenium components: Selenium IDE, Selenium RC, Selenium WebDriver

    • Different locators: ID, Name...

  • Answered by AI
  • Q4. Robot Framework : what are standard libraries in Robot Framework? Explain robot framework architechture, what is setup and teardown, write a sample login script using robot framework?
  • Ans. 

    Answering questions related to Robot Framework and its standard libraries, architecture, setup and teardown, and a sample login script.

    • Standard libraries in Robot Framework include BuiltIn, Collections, DateTime, Dialogs, OperatingSystem, Process, Screenshot, String, Telnet, and XML.

    • Robot Framework architecture consists of test cases, test suites, and keywords.

    • Setup and teardown are pre and post conditions for test cas...

  • Answered by AI
  • Q5. Do we have any specific tool for Robot Framework? If yes explain why we have to use it? Learn about built in actions in robot framework and keywords
  • Q6. String programs, basic programs in python and some assertion questions in selenium
  • Q7. What are the locators in selenium? what is the difference between driver.quit and drive.close? What is implicit wait and explicit wait ?
  • Ans. 

    Answers to common Selenium interview questions.

    • Locators in Selenium are used to identify web elements on a web page. Examples include ID, class name, name, tag name, link text, and partial link text.

    • driver.quit() closes the entire browser window and ends the WebDriver session, while driver.close() only closes the current window or tab.

    • Implicit wait is a global wait that applies to all web elements and waits for a speci...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. How do you convert json object to string and vice versa?
  • Ans. 

    To convert JSON object to string, use JSON.stringify(). To convert string to JSON object, use JSON.parse().

    • JSON.stringify() method converts a JavaScript object or value to a JSON string.

    • JSON.parse() method parses a JSON string and returns a JavaScript object.

    • Example: var obj = {name: 'John', age: 30}; var jsonString = JSON.stringify(obj); var jsonObj = JSON.parse(jsonString);

    • Make sure the JSON string is valid, else it

  • Answered by AI
  • Q2. What are lists and its functions?
  • Ans. 

    Lists are a collection of ordered and changeable elements. They have various functions to manipulate the data.

    • Lists are created using square brackets []

    • They can contain any data type such as strings, integers, or even other lists

    • Functions include append(), insert(), remove(), pop(), sort(), and reverse()

    • Example: my_list = ['apple', 'banana', 'cherry']

    • Example: my_list.append('orange') adds 'orange' to the end of the lis

  • Answered by AI
  • Q3. Write a program to find the elements of a list that have least difference in python? input = [3,9,50,15,99,7,98,65] output = [98,99]
  • Ans. 

    Program to find elements of a list with least difference in Python

    • Sort the list

    • Find the minimum difference between adjacent elements

    • Return the elements with minimum difference

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GlobalLogic Qa Automation Testing Engineer interview:
  • Python
  • Selenium
  • Robot Framework
  • Coding
Interview preparation tips for other job seekers - I was told that I was shortlisted in the first round of the interview and will have to give client interview. They gave a call back after 20 days after completion of the first round and scheduled the client interview. HR bargained a lot on the package and then I told to drop off the profile as I'm not happy with their offer.

Skills evaluated in this interview

Qa Automation Testing Engineer Interview Questions Asked at Other Companies

asked in GlobalLogic
Q1. selenium: what are selenium components, what are the different lo ... read more
asked in GlobalLogic
Q2. How do you convert json object to string and vice versa?
asked in GlobalLogic
Q3. Robot Framework : what are standard libraries in Robot Framework? ... read more
asked in GlobalLogic
Q4. Write a program to find the elements of a list that have least di ... read more
asked in GlobalLogic
Q5. what are the locators in selenium? what is the difference between ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was Average.......,....

Round 2 - Coding Test 

Medium level of difficulties

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a QA Automation Testing Engineer with 5 years of experience in creating and executing test cases for software applications.

    • 5 years of experience in QA Automation Testing

    • Proficient in creating and executing test cases

    • Strong knowledge of automation tools like Selenium and JUnit

    • Experience in testing web and mobile applications

    • Familiar with Agile methodology

  • Answered by AI
  • Q2. Tell me about your family
  • Q3. How was your day

I was interviewed before Oct 2021.

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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Prject architecture and your role
  • Q2. Automation Frameworks related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Please inform clearly to candidates about the interview process

I applied via Naukri.com and was interviewed in Jan 2022. 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 Resume tips
Round 2 - Aptitude Test 

Math, logical reasoning, verbal communication

Round 3 - Technical 

(1 Question)

  • Q1. Java basic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Must know about testing Manual and Automation tool
Create test plan , write test scenario, Write and execution of test case
Error, Defect,bug tracking, SDLC,STLC Agile methodology, functional testing, Database Testing, GUI testing, Exploratory testing,Black Box testing, white Box testing,V Model,QA,QC, severity, Priority

I applied via Company Website and was interviewed before Nov 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 Resume tips
Round 2 - Aptitude Test 

Medium level Aptitude questions,and basic coding knowledge required to clear the First round

Round 3 - Assignment 

Communication skill Assessment

Round 4 - Technical 

(5 Questions)

  • Q1. Core Java Questions,few may ask to write basic program in Java/C/python
  • Q2. Write a program to print Fibonacci series
  • Ans. 

    Program to print Fibonacci series

    • Declare two variables to store the first two numbers of the series

    • Use a loop to generate the next numbers in the series

    • Print each number as it is generated

  • Answered by AI
  • Q3. Program to Print palindrome
  • Ans. 

    Program to print palindrome

    • A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward

    • To check if a string is a palindrome, we can compare the first and last characters, then the second and second-to-last characters, and so on

    • If all pairs match, the string is a palindrome

    • We can use a loop to iterate through the string and compare the characters

  • Answered by AI
  • Q4. Program to print average of number series
  • Ans. 

    Program to print average of number series

    • Create a variable to store the sum of the numbers in the series

    • Create a variable to store the count of numbers in the series

    • Loop through the series and add each number to the sum variable

    • Increment the count variable for each number in the series

    • Calculate the average by dividing the sum by the count

    • Print the average

  • Answered by AI
  • Q5. Program to print sum of 2 numbers
  • Ans. 

    Program to print sum of 2 numbers

    • Declare 2 variables to store the numbers

    • Add the variables and store the result in another variable

    • Print the result

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Self Intro,Fav movie and why is it favourite,Hobbies

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with aptitude and Java.All the best🙂
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 May 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Question of test automation framework
  • Q2. Coding problems on Arrays, Strings
  • Q3. Basic questions on selenium
  • Q4. Git commands. What is git stash used for?
  • Ans. 

    Git stash is used to temporarily store changes that are not ready to be committed.

    • Git stash is used to save changes that are not ready to be committed, allowing you to switch branches or work on something else.

    • It is useful when you want to temporarily store changes without committing them.

    • You can later apply the stashed changes back to your working directory.

    • Example: git stash save 'work in progress'

    • Example: git stash

  • Answered by AI
  • Q5. How to handle conflicts in git
  • Ans. 

    Conflicts in git can be handled by resolving them through merging, rebasing, or using tools like git mergetool.

    • Communicate with team members to understand changes causing conflicts

    • Resolve conflicts by manually editing files or using git mergetool

    • Use git rebase to reapply changes on top of another branch

    • Merge conflicting branches after resolving conflicts

  • Answered by AI
  • Q6. Questions on Data Provider, TestNG annotations

Skills evaluated in this interview

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and allows null values and keys, while HashTable is synchronized and does not allow null values or keys.

    • HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and keys, while HashTable does not allow null values or keys.

    • HashMap is generally preferred over HashTable for non-thread-safe operations due to better performance.

  • Answered by AI
  • Q2. What is final finally finalize
  • Ans. 

    final, finally, and finalize are keywords in Java used for different purposes.

    • final is a keyword used to declare constants, prevent method overriding, and prevent inheritance.

    • finally is a block of code that is always executed, whether an exception is thrown or not.

    • finalize is a method used for cleanup operations before an object is garbage collected.

  • Answered by AI
  • Q3. What is idempotent in API
  • Ans. 

    Idempotent in API means that making the same request multiple times has the same effect as making it once.

    • Idempotent operations produce the same result regardless of how many times they are called.

    • GET and PUT requests are typically idempotent, while POST requests are not.

    • For example, sending a PUT request to update a resource should have the same result whether it is sent once or multiple times.

  • Answered by AI
  • Q4. Pillars of JAVA and explain with example
  • Ans. 

    The pillars of JAVA are Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability of a method to do different things based on the ob...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Self introductions and java coding round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python concept related prpgrams
  • Q2. Multithreaded related questions
Contribute & help others!
anonymous
You can choose to be anonymous

GlobalLogic Interview FAQs

How many rounds are there in GlobalLogic Qa Automation Testing Engineer interview?
GlobalLogic interview process usually has 2 rounds. The most common rounds in the GlobalLogic interview process are Technical and Resume Shortlist.
How to prepare for GlobalLogic Qa Automation Testing 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 GlobalLogic. The most common topics and skills that interviewers at GlobalLogic expect are Automation Testing, Selenium, Appium, Java and QA.
What are the top questions asked in GlobalLogic Qa Automation Testing Engineer interview?

Some of the top questions asked at the GlobalLogic Qa Automation Testing Engineer interview -

  1. selenium: what are selenium components, what are the different locators in sele...read more
  2. How do you convert json object to string and vice ver...read more
  3. Robot Framework : what are standard libraries in Robot Framework? Explain robot...read more

Recently Viewed

INTERVIEWS

Slk Software Services

No Interviews

INTERVIEWS

Accenture

No Interviews

INTERVIEWS

Optum Global Solutions

No Interviews

INTERVIEWS

Shaktiman Tirth Agro Technology

No Interviews

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Infosys

No Interviews

INTERVIEWS

MAQ Software

No Interviews

INTERVIEWS

MAQ Software

No Interviews

INTERVIEWS

Transrail Lighting

No Interviews

INTERVIEWS

LTIMindtree

No Interviews

Tell us how to improve this page.

GlobalLogic Qa Automation Testing Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
GlobalLogic Qa Automation Testing Engineer Salary
based on 8 salaries
₹13 L/yr - ₹18.4 L/yr
122% more than the average Qa Automation Testing Engineer Salary in India
View more details

GlobalLogic Qa Automation Testing Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Associate Analyst
3.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
3.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
3.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
2.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare GlobalLogic with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent