Upload Button Icon Add office photos

Filter interviews by

Barclays Automation Lead Interview Questions and Answers

Updated 21 May 2024

Barclays Automation Lead Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Normal java and selenium questions, nothing difficicult some java coding questions and selenium developer tools interactions

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to read a data from excel
  • Ans. 

    Program to read data from Excel

    • Use a library like Apache POI or Openpyxl to read Excel files

    • Identify the sheet and cell from which data needs to be read

    • Handle exceptions like file not found or incorrect cell format

  • Answered by AI
  • Q2. Write a program to handle runtime exception
  • Ans. 

    Program to handle runtime exception

    • Use try-catch blocks to handle exceptions

    • Catch specific exceptions to handle them differently

    • Use finally block to execute code regardless of exception

    • Throw custom exceptions when needed

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Java, Selenium Technical questions.
  • Q2. Java collections Oops concepts Abstract vs Interface
  • Q3. Array concepts String functions
Round 2 - Technical 

(1 Question)

  • Q1. Java, Selenium Java syntex
Round 3 - Coding Test 

Java String programs
Selenium Scripts

Round 4 - HR 

(1 Question)

  • Q1. Package discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 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 - Technical 

(1 Question)

  • Q1. What was your experiences about Automation Testing
  • Ans. 

    I have extensive experience in automation testing, including designing and implementing test frameworks and scripts.

    • Designed and implemented automation test frameworks using tools like Selenium and Appium

    • Developed and executed automated test scripts for web and mobile applications

    • Integrated automation tests into CI/CD pipelines for continuous testing

    • Performed regression testing using automation to ensure software stabi...

  • Answered by AI
Round 3 - Coding Test 

You will create a mini application so they can assess your coding skills.

Round 4 - Behavioral 

(1 Question)

  • Q1. Overall experiences, Situational, Behavior

Interview Preparation Tips

Interview preparation tips for other job seekers - It's very important that you know you are saying. So listen carefully before answering the questions.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Nov 2022. There were 2 interview rounds.

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 - Telephonic Call 

(2 Questions)

  • Q1. 1. Logical questions like Pick 3rd element from 5 element list without using Index or looping concept, 2. 5 edit boxes are there with same property, nearer to each edit box is unique URL, How you will edit...
  • Q2. 3. Locators order of usage 4. TestNG annotation orders, 5. About Feature file, Step Definitions
  • Ans. 

    Answering questions related to Automation Test Engineer interview

    • Locators order of usage refers to the priority of locators used to identify web elements in automation testing

    • TestNG annotation orders refer to the sequence in which TestNG annotations are executed in a test case

    • Feature file is a file that contains high-level description of the scenarios and steps in Gherkin language

    • Step Definitions are the implementation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for all the concepts which is automation related, from every main topics they will ask you to rate yourself and they will ask minimum 4 ques on that topics

Skills evaluated in this interview

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

(2 Questions)

  • Q1. HashMap program
  • Ans. 

    HashMap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It allows for efficient retrieval of values based on keys.

    • Keys in a HashMap must be unique, but values can be duplicated.

    • Example: HashMap map = new HashMap<>();

  • Answered by AI
  • Q2. Api testing interview

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

45 minutes of Aptitude test consisting HOT skills questions related to Core Java, API and automation

Round 3 - Technical 

(1 Question)

  • Q1. - Previous experience - Write basic program in Selenium
  • Ans. 

    I have experience writing basic programs in Selenium for automation testing.

    • Use Selenium WebDriver to open a browser and navigate to a webpage

    • Locate elements on the webpage using various locators like ID, class name, xpath, etc.

    • Perform actions on the elements like clicking buttons, entering text, etc.

    • Use assertions to verify expected outcomes

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just convey your current project clearly and prepare for basics in Core Java and API

Skills evaluated in this interview

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 Apr 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. What is test life cycle?
  • Ans. 

    Test life cycle is a series of phases that a software testing process goes through, from planning to test closure.

    • Test life cycle includes test planning, test design, test execution, and test closure.

    • In test planning, test objectives, scope, and test strategy are defined.

    • Test design involves creating test cases and test data.

    • Test execution is the phase where tests are executed and defects are logged.

    • Test closure includ...

  • Answered by AI
  • Q2. Reverse String in java?
  • Ans. 

    Reverse a string in Java

    • Convert the string to a character array

    • Use two pointers, one at the start and one at the end of the array

    • Swap the characters at the two pointers and move the pointers towards each other

    • Continue swapping until the pointers meet in the middle

  • Answered by AI
  • Q3. How is given in rest assured?
  • Ans. 

    Rest Assured is a Java library used for testing RESTful APIs. It provides a simple and intuitive way to write automated tests.

    • Rest Assured is a Java library

    • It is used for testing RESTful APIs

    • It provides a simple and intuitive way to write automated tests

  • Answered by AI
  • Q4. What is When in cucumber?
  • Ans. 

    When in Cucumber is a keyword used to define the conditions under which a particular step or scenario should be executed.

    • When is used to specify the triggering event or condition for a step or scenario

    • It is followed by a regular expression or a Cucumber expression

    • When can be used to perform actions or set up preconditions before executing the step or scenario

    • It can also be used to pass parameters to the step definition

  • Answered by AI
  • Q5. What is Oops concept?
  • Ans. 

    Oops concept is a programming paradigm that focuses on objects and their interactions to solve problems.

    • Oops stands for Object-Oriented Programming System.

    • It emphasizes the use of classes and objects to structure code.

    • Encapsulation, inheritance, and polymorphism are key concepts in OOP.

    • Encapsulation hides the internal details of an object and provides a public interface.

    • Inheritance allows classes to inherit properties ...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Asked about my project, whatever skills mentioned in the resume is asked. Coding questions like find duplicate strings etc.
Round 2 - Technical 

(1 Question)

  • Q1. It was with hiring manager and he asked about the process we follow in our current company. What sprint ceremonies I was a part of.

I applied via Naukri.com and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. 1. In your framework how have you and why have used abstract classes and interfaces? 2. Program on reverse string 3. List and set differences 4. Exception handling in selenium 5. findElement and findEleme...
  • Ans. 

    Answers to interview questions for Senior Automation Engineer position

    • Abstract classes and interfaces are used for creating reusable code and implementing polymorphism

    • Example of abstract class: WebDriver in Selenium

    • Example of interface: WebElement in Selenium

    • Reverse string program can be implemented using StringBuilder or char array

    • List is ordered and allows duplicates, Set is unordered and does not allow duplicates

    • Exc...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. 1. Print numbers from 1 to 100 without using any loop ? 2. How do you take out duplicate values from array without using any set ? if you iterate the array and take out unique values , how do you do it fo...
  • Ans. 

    Answers to interview questions for Senior Automation Engineer

    • 1. Using recursion to print numbers

    • 2. Using nested loops to compare each element

    • 3. Alert is a pop-up window while verify is a method to check if an element is present

    • 4. Verify will continue the test even if the assertion fails

    • 5. A class that can only have one instance at a time

    • 6. Use explicit wait on the flag element

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Deutsche Bank Senior Automation Engineer interview:
  • Selenium
  • Java
Interview preparation tips for other job seekers - Practice all java concepts using programs not only definitions . This is 7-8 years experience interview

Skills evaluated in this interview

Barclays Interview FAQs

How many rounds are there in Barclays Automation Lead interview?
Barclays interview process usually has 1 rounds. The most common rounds in the Barclays interview process are Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 Barclays interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.4k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 614 Interviews
IndusInd Bank Interview Questions
3.6
 • 578 Interviews
Bandhan Bank Interview Questions
3.7
 • 512 Interviews
HSBC Group Interview Questions
4.0
 • 487 Interviews
Yes Bank Interview Questions
3.8
 • 409 Interviews
View all
Barclays Automation Lead Salary
based on 11 salaries
₹15.5 L/yr - ₹27.4 L/yr
42% more than the average Automation Lead Salary in India
View more details

Barclays Automation Lead Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

3.0

Work-Life balance

4.0

Salary & Benefits

2.0

Job Security

2.0

Company culture

4.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Assistant Vice President
2.3k salaries
unlock blur

₹17 L/yr - ₹45 L/yr

Senior Analyst
1.1k salaries
unlock blur

₹3 L/yr - ₹12.1 L/yr

Assistant Manager
964 salaries
unlock blur

₹6.7 L/yr - ₹25 L/yr

Process Advisor
885 salaries
unlock blur

₹1 L/yr - ₹8.3 L/yr

Analyst
787 salaries
unlock blur

₹11.6 L/yr - ₹20 L/yr

Explore more salaries
Compare Barclays with

Deutsche Bank

3.9
Compare

Accenture

3.9
Compare

Amazon

4.1
Compare

Deloitte

3.8
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