Premium Employer

i

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

Publicis Sapient Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Publicis Sapient Qa Automation Testing Engineer Interview Questions and Answers

Updated 19 Jun 2024

Publicis Sapient Qa Automation Testing Engineer Interview Experiences

2 interviews found

Interview experience
4
Good
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 - Coding Test 

I was asked to write
1. java program for move positive numbers first and negative numbers last
2. java program to reverse the words in a string without using split method.
3. Selenium coding questions.

Interview Preparation Tips

Topics to prepare for Publicis Sapient Qa Automation Testing Engineer interview:
  • Java
  • Selenium
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response

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

Round 1 - Coding Test 

1. Write a java code to print smallest and largest word in the given sentence.
2.Java code to print the statement in reverse.
3. In notepad,interviewer asked us to write the code POM class and how to call it - (Basically they wanted to check the knowledge of PageFactory class.)
4.How to write the code from config file and excel sheet.
5.All Git command

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. AOM, FSO , DOM,OR ADODB
  • Q2. Vb script functions actions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

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

    • Experienced in creating automated test scripts using tools like Selenium and Appium

    • Proficient in writing test cases, executing test plans, and reporting bugs

    • Skilled in analyzing test results and providing recommendations for improvements

    • Strong knowledge of Agile methodologies and continuous in

  • Answered by AI
  • Q2. Program to count the occurrence of vowels
  • Ans. 

    Program to count the occurrence of vowels in an array of strings

    • Iterate through each string in the array

    • For each string, iterate through each character and check if it is a vowel (a, e, i, o, u)

    • Increment a counter for each vowel found in the string

    • Repeat for all strings in the array and return the total count of vowels

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No communication regarding feedback after the 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 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

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
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can access public and protected members of the base class

    • Example: Class Car can inherit from class Vehicle to reuse com

  • Answered by AI
  • Q2. What is oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on data abstraction, encapsulation, inheritance, and polymorphism.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features to the outside world.

    • Encapsulation: Binding data and methods that operate on the data into a single unit.

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What is your name
  • Ans. 

    My name is John Smith.

    • Full name is John Smith

    • Common name in English-speaking countries

    • No middle name or initial

  • Answered by AI
  • Q2. Where from you belong

Interview Preparation Tips

Round: Test
Experience: Written test was easy. It comprised aptitude and general english questions

Round: Technical Interview
Experience: Questions were about project, Simple programming concepts, etc
Code to basic programming concepts.
Tips: Do not say Algorithms as an area of interest.

General Tips: Be confident in your answers. Show that you have positive attitude always. Do not lose your confidence if you are not selected for the company. try the other with full hope. All the best!
College Name: IIT-ROORKEE

Interview Questionnaire 

1 Question

  • Q1. Mostly from your project

Interview Preparation Tips

Round: Test
Experience: Easy
Tips: You should have your basics clear.
Duration: 60 minutes minutes
Total Questions: Aptitude

Round: Group Discussion
Experience: They just wanted to check your communication skills.You must sound confident when you speak.
Tips: Start working on your English from today itself .you can't improve it overnight.
Duration: 20 mins minutes

Round: Technical Interview
Experience: They wanted to know your contribution in project and whether you have done it seriously or not.
Tips: Basics of your branch, clear knowledge of your project and you will make it through.

General Tips: Never stop trying.You never know ,a single night can change your life.
College Name: NIT AGARTALA
Motivation: Was rejected by 5 companies ,I think that was enough to motivate me for applying to this company.

I appeared for an interview in Sep 2016.

Interview Questionnaire 

6 Questions

  • Q1. Oops concept examples?
  • Ans. 

    Examples of OOP concepts include inheritance, polymorphism, and encapsulation.

    • Inheritance: A child class inherits properties and methods from a parent class.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Encapsulation: Data and methods are bundled together in a class, hiding internal details.

  • Answered by AI
  • Q2. Different SQL queries?
  • Ans. 

    Different SQL queries are used to retrieve, manipulate, and manage data in a relational database.

    • SELECT query: retrieves data from one or more tables

    • INSERT query: inserts new data into a table

    • UPDATE query: modifies existing data in a table

    • DELETE query: removes data from a table

    • JOIN query: combines data from multiple tables based on a related column

    • GROUP BY query: groups data based on a specific column

    • ORDER BY query: so...

  • Answered by AI
  • Q3. Programme on file handling?
  • Ans. 

    A program on file handling is a software that allows users to create, read, update, and delete files on a computer system.

    • File handling involves operations such as opening, closing, reading, writing, and deleting files.

    • File handling can be done using various programming languages such as C, C++, Java, Python, etc.

    • Examples of file handling operations include creating a new file, reading data from a file, writing data to...

  • Answered by AI
  • Q4. Introduce yourself ?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q5. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Advancing to a senior software engineer role

    • Leading a team of developers on projects

    • Working on innovative and challenging projects

    • Continuing to learn and grow in the field

  • Answered by AI
  • Q6. What are your weakness and strength?
  • Ans. 

    My weakness is overthinking and my strength is attention to detail.

    • Weakness: tend to overthink situations, which can lead to indecision

    • Strength: strong attention to detail, ensuring accuracy in work

    • Weakness: difficulty delegating tasks, preferring to do everything myself

    • Strength: quick learner, able to pick up new technologies and concepts easily

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: I got a call for the interview from elitmus, after which first round was written round in which aptitude questions were asked from different topics such as number system, time and work, ratio, probability etc. And there were negative marks for wrong answers.
Tips: For elitmus prepare from R.S Agrawal and Arun Sharma, both are good books.
Don't try to just answer every question if there is negative marking for the wrong answer.
Duration: 45 minutes
Total Questions: 35

Round: Group Discussion
Experience: In this round, we have to speak about the given topic for about 10 minutes. So I spoke on both good and bad use of mobile phone.
Tips: just be confident and fluent.
Duration: 10 minutes

Round: Technical Interview
Experience: In this round basically, questions were asked from Java and SQL.
Tips: Have a proper knowledge about all the technical skills in your resume.
Cover all the topics so that you do not go blank in any question during the interview.

Round: Project Round
Experience: This round was all about my college project. About what my project was, how many members were there in my team, what was my role and involvement in the project and some technical questions about the project.
Tips: make sure that you know all about your project.
try to make your own project by yourself.

Round: HR Interview
Experience: This round was just general talk round with simple interaction to introduce myself and tell hobbies, my future plans, my strength, my weakness etc. And all about the salary and job role part.
Tips: just be yourself.

College Name: Radharaman Institute Of Technology And Science

Skills evaluated in this interview

Publicis Sapient Interview FAQs

How many rounds are there in Publicis Sapient Qa Automation Testing Engineer interview?
Publicis Sapient interview process usually has 1 rounds. The most common rounds in the Publicis Sapient interview process are Coding Test.

Tell us how to improve this page.

Publicis Sapient Qa Automation Testing Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Join Publicis Sapient Let's imagine the future together.
Publicis Sapient Qa Automation Testing Engineer Salary
based on 4 salaries
₹7.1 L/yr - ₹20 L/yr
108% more than the average Qa Automation Testing Engineer Salary in India
View more details
Senior Associate
2.1k salaries
unlock blur

₹11 L/yr - ₹40 L/yr

Associate Technology L2
1.5k salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Senior Associate Technology L1
1.2k salaries
unlock blur

₹10.3 L/yr - ₹32 L/yr

Senior Software Engineer
784 salaries
unlock blur

₹9.7 L/yr - ₹38 L/yr

Senior Associate 2
639 salaries
unlock blur

₹14.1 L/yr - ₹42 L/yr

Explore more salaries
Compare Publicis Sapient with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Virtusa Consulting Services

3.7
Compare

CGI Group

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