Upload Button Icon Add office photos
Engaged Employer

i

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

Bajaj Finserv Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Bajaj Finserv QA Automation Engineer Interview Questions, Process, and Tips

Updated 27 Dec 2022

Bajaj Finserv QA Automation Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(13 Questions)

  • Q1. Which framework you are using? explain your framework?
  • Ans. 

    I am using the Selenium WebDriver framework for automation testing.

    • Selenium WebDriver is a popular open-source framework for automating web applications.

    • It supports multiple programming languages such as Java, Python, C#, etc.

    • It provides a rich set of APIs for interacting with web elements and performing actions.

    • It also supports parallel execution and integration with other tools like TestNG and Maven.

    • I have used it to...

  • Answered by AI
  • Q2. Different annotations and its hierarchy?
  • Ans. 

    Annotations are used in Java to provide additional information about classes, methods, and fields.

    • Annotations are declared using the @ symbol followed by the annotation name.

    • Annotations can have attributes that can be set using key-value pairs.

    • Annotations can be applied to classes, methods, fields, parameters, and local variables.

    • Annotations can be inherited from superclasses or interfaces.

    • Annotations can be used for d...

  • Answered by AI
  • Q3. Which annotation do you use for opening and closing browser?
  • Ans. 

    The @BeforeMethod and @AfterMethod annotations are used for opening and closing the browser.

    • The @BeforeMethod annotation is used to open the browser before each test method.

    • The @AfterMethod annotation is used to close the browser after each test method.

    • These annotations are part of the TestNG framework.

    • Example: @BeforeMethod public void setUp() { //code to open browser } @AfterMethod public void tearDown() { //code to

  • Answered by AI
  • Q4. Can you find xpath on any website?
  • Ans. 

    Yes, but it may not always be the most efficient or reliable method.

    • Xpath can be used to locate elements on any website, but it may require some trial and error to find the correct path.

    • Other methods such as CSS selectors or ID attributes may be more efficient in some cases.

    • Xpath can also be affected by changes to the website's structure or layout.

    • Using browser developer tools can help in identifying the correct xpath

  • Answered by AI
  • Q5. What are selenium waits?
  • Ans. 

    Selenium waits are used to synchronize the test script execution with the web application's response time.

    • Selenium waits are used to handle synchronization issues in test automation.

    • There are three types of waits in Selenium: Implicit, Explicit, and Fluent waits.

    • Implicit waits wait for a certain amount of time before throwing an exception if the element is not found.

    • Explicit waits wait for a certain condition to occur ...

  • Answered by AI
  • Q6. Difference between SDLC vs STLC ?
  • Ans. 

    SDLC is the process of developing software while STLC is the process of testing software.

    • SDLC includes planning, designing, coding, testing, and maintenance stages while STLC includes test planning, test case development, test execution, and test closure stages.

    • SDLC focuses on the development of software while STLC focuses on the testing of software.

    • SDLC is a broader term that includes STLC as a part of it.

    • SDLC is a co...

  • Answered by AI
  • Q7. Types of environments you use in your organization?
  • Ans. 

    We use multiple environments including development, testing, staging, and production.

    • Development environment for coding and testing new features

    • Testing environment for automated and manual testing

    • Staging environment for final testing before deployment

    • Production environment for live usage

    • Each environment is isolated and has its own database and configurations

    • We also use virtual environments for testing different operati

  • Answered by AI
  • Q8. What is Regression and Sanity testing? how and when you do it?
  • Ans. 

    Regression testing ensures that changes to the code do not affect existing functionality. Sanity testing checks if the critical functionalities are working after a small change.

    • Regression testing is done after making changes to the code to ensure that existing functionalities are not affected.

    • Sanity testing is done after a small change to ensure that critical functionalities are still working.

    • Regression testing is done...

  • Answered by AI
  • Q9. How to execute failed test cases?
  • Ans. 

    Failed test cases can be executed by identifying the root cause of failure and fixing it before re-executing the test case.

    • Identify the root cause of failure by analyzing the test results and logs

    • Fix the issue causing the failure

    • Re-run the test case to ensure it passes

    • Update the test case status and report any defects found

    • Repeat the process for all failed test cases

  • Answered by AI
  • Q10. How you run your maven project?
  • Q11. How do you perform API testing?
  • Ans. 

    API testing involves verifying the functionality, reliability, performance, and security of APIs.

    • Identify the API endpoints and their expected behavior

    • Create test cases to cover all possible scenarios

    • Use tools like Postman, SoapUI, or JMeter to send requests and validate responses

    • Verify the response status codes, headers, and payload

    • Test for security vulnerabilities like SQL injection or cross-site scripting

    • Automate AP...

  • Answered by AI
  • Q12. Different parameters in postman tool?
  • Ans. 

    Postman tool allows different parameters to be used for API testing.

    • Query Parameters: Used to filter and sort data in the API response.

    • Path Parameters: Used to identify a specific resource in the API.

    • Header Parameters: Used to provide additional information about the request.

    • Body Parameters: Used to send data in the request body.

    • Form Data Parameters: Used to send data in the form of key-value pairs.

    • Environment Variable...

  • Answered by AI
  • Q13. Authorization in postman tool?
  • Ans. 

    Authorization in Postman tool is used to authenticate and authorize requests sent to APIs.

    • Authorization can be set in the Headers tab of a request in Postman

    • Common authorization methods include Basic Auth, OAuth 2.0, and API keys

    • Authorization can also be set globally for all requests in a collection

    • Postman also supports automatic token refresh for OAuth 2.0 authorization

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Bajaj Finserv QA Automation Engineer interview:
  • Manual Testing
  • Selenium
  • API
  • Automation Testing
Interview preparation tips for other job seekers - Be confident in the interview... I just enjoyed the first round..

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. OOPS Concepts,Java Coding,Testing
Round 2 - Technical 

(1 Question)

  • Q1. Selenium, APIs, Automation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How will you count the radio buttons on a page in selenium
  • Ans. 

    Counting radio buttons on a page in Selenium using findElements method

    • Use findElements method to locate all radio buttons on the page

    • Get the size of the list of elements to count the number of radio buttons

  • Answered by AI
  • Q2. How will you upload files using api and ui
  • Ans. 

    Files can be uploaded using API by sending a POST request with the file as a payload. UI can use file input field to upload files.

    • For API, use a POST request with the file as a payload

    • For UI, use a file input field to select and upload files

    • API example: POST /uploadFile with file as payload

    • UI example: to select and upload files

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Compensation discussion
  • Q2. Role discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Scenario based questions
Selenium questions
API questions
Linux questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Write a program in Java to convert a given string into camel case format.

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Framework Regression Alm

Interview Preparation Tips

Interview preparation tips for other job seekers - In my entire IT career till now, this was the worst interview I have given
Interviewer is not ready to listen and for few of the questions answered correctly, he's not ready to accept that
What ever he knows we have to accept that and he didn't allow me to speak further.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Prepare interview questions from geekforgeeks & leetcode.
Round 3 - Technical 

(1 Question)

  • Q1. Api automation related questions with writing the framework.
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant and verbal ability

Round 2 - Coding Test 

Questions from DSA and webdevelopement

Round 3 - HR 

(1 Question)

  • Q1. About my goals with the company and how will I contribute to it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and try to answer question in your own words rather than looking online for them

I applied via Campus Placement and was interviewed in May 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 - Technical 

(5 Questions)

  • Q1. Questions about framework you have used in project, TestNG annotations ,flags.
  • Q2. String reverse program,
  • Q3. Find duplicate in array program
  • Ans. 

    Program to find duplicates in an array.

    • Iterate through the array and compare each element with the rest of the elements.

    • If a match is found, add it to a separate array or print it.

    • Use a hash table to keep track of the frequency of each element.

    • Sort the array and compare adjacent elements to find duplicates.

  • Answered by AI
  • Q4. Open perticular page and inspect element (link)
  • Q5. Selenium waits , difference
  • Ans. 

    Selenium waits are used to pause the execution of the script, while the difference is in the way they wait for an element.

    • Implicit wait is used to wait for a certain amount of time before throwing an exception if the element is not found.

    • Explicit wait is used to wait for a certain condition to occur before proceeding with the execution.

    • Fluent wait is used to wait for an element with a certain frequency and timeout peri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on framework, oops concepts, programs on Array, String

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Compare UI drop down value stored in array and its corresponding values from DB
  • Ans. 

    Comparing UI dropdown values stored in array with corresponding values from DB

    • Retrieve UI dropdown values from array and corresponding values from DB

    • Iterate through both arrays to compare each value

    • Use a loop to check if each value in UI dropdown array matches the corresponding value in DB

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. OOPS concept, Collections, GIT
Round 3 - HR 

(1 Question)

  • Q1. Careless and they don't bother to revert even though you may have cleared the rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to first discuss the salary, place of work and other details or else at the end of the process after clearing all the rounds, they will deny stating that the base location and your location is different and hence cant roll out the offer. Simply wasted my time.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2022. 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 - Coding Test 

Simple logical xpath writing

Round 3 - One-on-one 

(1 Question)

  • Q1. Technically discussed in java and selenium

Bajaj Finserv Interview FAQs

How many rounds are there in Bajaj Finserv QA Automation Engineer interview?
Bajaj Finserv interview process usually has 2 rounds. The most common rounds in the Bajaj Finserv interview process are Resume Shortlist and Technical.
What are the top questions asked in Bajaj Finserv QA Automation Engineer interview?

Some of the top questions asked at the Bajaj Finserv QA Automation Engineer interview -

  1. Which framework you are using? explain your framewo...read more
  2. Which annotation do you use for opening and closing brows...read more
  3. what is Regression and Sanity testing? how and when you do ...read more

Tell us how to improve this page.

Bajaj Finserv QA Automation Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

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.5k Interviews
Wells Fargo Interview Questions
3.9
 • 567 Interviews
Citicorp Interview Questions
3.7
 • 566 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
American Express Interview Questions
4.2
 • 360 Interviews
BNY Interview Questions
3.9
 • 338 Interviews
View all
Assistant Manager
1.3k salaries
unlock blur

₹1.8 L/yr - ₹6.7 L/yr

Sales Officer
1.3k salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Sales Executive
1.2k salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Sales Manager
1k salaries
unlock blur

₹1.5 L/yr - ₹10 L/yr

Manager
869 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Bajaj Finserv with

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

3.8
Compare

State Bank of India

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