Upload Button Icon Add office photos
Engaged Employer

i

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

YASH Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

YASH Technologies Test Lead Interview Questions and Answers

Updated 19 Feb 2024

YASH Technologies Test Lead Interview Experiences

1 interview found

Test Lead Interview Questions & Answers

user image Tejaswini Uttarkar

posted on 19 Feb 2024

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Tell about roles and responsibilities
Round 2 - HR 

(1 Question)

  • Q1. Tell about challenges faced in your current company

Interview questions from similar companies

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

(1 Question)

  • Q1. Testing Fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Preperation is needed for the profile you're applying for.

Interview can be online/offline.

Interviewer is mostly very polite & understanding during the entire process.

Interviews are generally 45mins to 1hr per round.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I was interviewed before Feb 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Java concept,selenium basics and appium basic
Round 2 - Technical 

(1 Question)

  • Q1. Client interview main testing concepts,java concepts,selenium concepts
Round 3 - HR 

(1 Question)

  • Q1. Material question , communication skill
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 

(2 Questions)

  • Q1. Various Unix commands and sql queries
  • Q2. Unix commands for permissions
  • Ans. 

    Unix commands for permissions

    • chmod - change file mode bits

    • chown - change file owner and group

    • ls - list directory contents with permissions

    • umask - set default file permissions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview and good company to work with.
Panel for very polite

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Current Project
  • Ans. 

    Currently working on developing automated test scripts for a web application

    • Creating test cases using Selenium WebDriver

    • Implementing test automation frameworks like TestNG

    • Performing regression testing on new features

    • Collaborating with developers to identify and fix bugs

  • Answered by AI
  • Q2. Framework Structure
  • Q3. Code for sorting an array
  • Ans. 

    Code for sorting an array of strings

    • Use built-in sort function in programming language (e.g. sort() in Python)

    • Specify the comparison function to sort strings alphabetically

    • Handle uppercase and lowercase letters properly

    • Example: ['apple', 'banana', 'cherry'] should be sorted as ['apple', 'banana', 'cherry']

  • Answered by AI
  • Q4. Create Xpath
  • Ans. 

    Creating Xpath for locating elements in web pages

    • Use unique attributes like id, class, name to create Xpath

    • Avoid using indexes in Xpath as they can be brittle

    • Use functions like contains(), starts-with() for dynamic attributes

    • Consider using axes like ancestor, following-sibling for complex Xpath

  • Answered by AI
  • Q5. Few Appium related questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Few scenario based questions
  • Q2. Why GlobalLogic
  • Ans. 

    GlobalLogic offers a diverse range of projects, cutting-edge technologies, and a collaborative work environment.

    • GlobalLogic provides opportunities to work on a variety of projects, allowing for professional growth and skill development.

    • The company is known for its use of cutting-edge technologies, providing exposure to the latest tools and trends in the industry.

    • GlobalLogic fosters a collaborative work environment, enc...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Project related questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Hashmap code logic
  • Q2. Propertiy file , xpath ,excel file code
Round 2 - Behavioral 

(2 Questions)

  • Q1. Resume based question
  • Q2. Ci cd jenkin question

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck

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

Interview Questionnaire 

2 Questions

  • Q1. VOLTE and other legacy network call flow.
  • Ans. Need to answer as per question of telecom call flow.
  • Answered Anonymously
  • Q2. Testing strategy and test case of network related.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all test case of network related before given interview.

Test Lead Interview Questions & Answers

Synechron user image Sridevi Palukuri

posted on 13 Dec 2022

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. Automation Testing Questions
Round 3 - Technical 

(1 Question)

  • Q1. Automation testing questions
Round 4 - HR 

(1 Question)

  • Q1. HR discussion on salary and other details about the organization
Round 5 - Client Interview 

(1 Question)

  • Q1. Automation testing questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Hands-on is required to attend the Automation tester role interviews
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic Java questions Basic selenium questions Basic api questions Behavioral questions
  • Q2. Basic java question were asked string manipulation
  • Q3. Basic selenium questions were asked
  • Q4. Basic api questions were asked
Round 2 - One-on-one 

(1 Question)

  • Q1. Behavioral questions related to project

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies Test Lead interview?
YASH Technologies interview process usually has 2 rounds. The most common rounds in the YASH Technologies interview process are Technical and HR.
How to prepare for YASH Technologies Test Lead 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 YASH Technologies. The most common topics and skills that interviewers at YASH Technologies expect are Agile Coaching, Python, Selenium Testing, Appium and Archiving.

Tell us how to improve this page.

YASH Technologies Test Lead Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
YASH Technologies Test Lead Salary
based on 80 salaries
₹9.5 L/yr - ₹29.5 L/yr
17% more than the average Test Lead Salary in India
View more details

YASH Technologies Test Lead Reviews and Ratings

based on 11 reviews

3.9/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

3.3

Salary

3.0

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 11 Reviews and Ratings
Senior Software Engineer
1.4k salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.2 L/yr - ₹12.3 L/yr

Associate Consultant
775 salaries
unlock blur

₹2 L/yr - ₹10.6 L/yr

Consultant
731 salaries
unlock blur

₹5 L/yr - ₹20.3 L/yr

Module Lead
528 salaries
unlock blur

₹10.2 L/yr - ₹32 L/yr

Explore more salaries
Compare YASH Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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