Premium Employer

i

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

HCLTech Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 34.3k Reviews

Filter interviews by

HCLTech Automation Testing Interview Questions, Process, and Tips

Updated 11 Aug 2024

HCLTech Automation Testing Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
-

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

Round 1 - Technical 

(13 Questions)

  • Q1. Write an Xpath for an Anchor tag
  • Ans. 

    Xpath for an Anchor tag in Automation Testing

    • Use the 'a' tag in the Xpath expression to target anchor tags

    • Use '@href' attribute to specify the link of the anchor tag

    • Example: //a[@href='https://www.example.com']

  • Answered by AI
  • Q2. What are the challenges faced in your automation project and how did you overcome them ?
  • Ans. 

    Challenges faced in automation project and how they were overcome

    • Lack of skilled resources - Conducted training sessions to upskill team members

    • Unstable test environment - Implemented robust error handling mechanisms

    • Changing requirements - Utilized agile methodologies to adapt quickly

    • Integration issues with third-party tools - Collaborated with vendors for solutions

  • Answered by AI
  • Q3. Explain Selenium Architecture
  • Ans. 

    Selenium Architecture is a framework that consists of different components for automated testing of web applications.

    • Selenium WebDriver: It is the core component that allows interaction with web elements.

    • Selenium Grid: It enables parallel execution of tests across different browsers and environments.

    • Selenium IDE: It is a record and playback tool for creating test scripts.

    • Selenium RC (Remote Control): It is the predeces...

  • Answered by AI
  • Q4. Have you ever faced synchronization problem ? How did you overcome them ?
  • Ans. 

    Yes, I have faced synchronization problems while automating tests.

    • Yes, I have encountered synchronization issues when elements load at different speeds on a webpage.

    • To overcome this, I have used explicit waits in Selenium to wait for specific conditions before proceeding with the test.

    • I have also used implicit waits to set a default waiting time for the elements to load.

    • In some cases, I have used Thread.sleep() to paus...

  • Answered by AI
  • Q5. What are the exceptions handled other than NosuchElementException
  • Ans. 

    Other exceptions handled in automation testing besides NoSuchElementException

    • ElementNotVisibleException - when element is present in DOM but not visible on the page

    • StaleElementReferenceException - when element is no longer attached to the DOM

    • TimeoutException - when a command does not complete in a specific time frame

    • NoSuchWindowException - when the window target to be switched doesn't exist

    • InvalidElementStateException ...

  • Answered by AI
  • Q6. Explain OOPS concepts
  • Ans. 

    OOPS concepts are fundamental principles of Object-Oriented Programming, including inheritance, encapsulation, polymorphism, and abstraction.

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

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

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex imple...

  • Answered by AI
  • Q7. Difference between Relative and Absolute xpath
  • Ans. 

    Relative xpath is based on the current position of an element, while absolute xpath starts from the root element.

    • Relative xpath is shorter and less prone to breaking with changes in the DOM structure.

    • Absolute xpath is longer and more specific, starting from the root element of the HTML document.

    • Relative xpath is preferred for dynamic web elements, while absolute xpath is more suitable for static elements.

    • Example: Relat...

  • Answered by AI
  • Q8. Java Program to reverse a string
  • Ans. 

    Java program to reverse a string

    • Create a StringBuilder object

    • Use the reverse() method to reverse the string

    • Convert the StringBuilder object back to a string

  • Answered by AI
  • Q9. What is framework ? Explain the frameworks you worked on in your project?
  • Ans. 

    A framework is a set of guidelines, coding standards, concepts, and practices that provide structure and support for automated testing.

    • Framework helps in organizing and executing automated tests efficiently.

    • Common frameworks include Data-Driven, Keyword-Driven, Hybrid, and Behavior-Driven Development (BDD).

    • In my project, I have worked on a Data-Driven framework where test data is separated from test scripts for easy ma

  • Answered by AI
  • Q10. TestNG-How to re-run the failed Testcases
  • Ans. 

    TestNG provides the ability to re-run failed test cases using the 'retryAnalyzer' feature.

    • Implement a custom 'IRetryAnalyzer' class to define the retry logic for failed test cases.

    • Specify the 'retryAnalyzer' attribute in the @Test annotation with the custom retry analyzer class.

    • Set the 'retryAnalyzer' attribute to the custom class name in the testng.xml file to apply the retry logic globally.

    • Failed test cases will be a...

  • Answered by AI
  • Q11. What is Interface in Java
  • Ans. 

    Interface in Java is a reference type in Java, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • An interface is a blueprint of a class that can have abstract methods and constants.

    • Interfaces are used to achieve abstraction and multiple inheritance in Java.

    • Classes can implement multiple interfaces but can only extend one class.

    • Example: interface Sh...

  • Answered by AI
  • Q12. Explain Fluent wait ,implict ,explicit wait
  • Ans. 

    Fluent wait, implicit wait, and explicit wait are different types of wait strategies used in automation testing to handle synchronization issues.

    • Fluent wait is a dynamic wait mechanism in Selenium WebDriver that waits for a condition to be true with a specified polling frequency.

    • Implicit wait is a global wait applied to all elements in the WebDriver instance, allowing a certain amount of time for elements to load befor...

  • Answered by AI
  • Q13. TestNG supports crossbrowser testinh
  • Ans. 

    Yes, TestNG supports crossbrowser testing by allowing the execution of test cases on multiple browsers in parallel.

    • TestNG allows the use of @Parameters annotation to pass browser type as a parameter to test methods.

    • TestNG can be integrated with Selenium WebDriver to run tests on different browsers like Chrome, Firefox, and Safari.

    • TestNG provides the flexibility to run tests in parallel on multiple browsers for faster e

  • Answered by AI

Skills evaluated in this interview

Automation Testing Jobs at HCLTech

View all

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What do you mean by NRI gatherings and testing tools
  • Ans. 

    NRI gatherings refer to Non-Resident Indian events where testing tools can be used for automation testing.

    • NRI gatherings are events organized for Non-Resident Indians to come together and celebrate their culture.

    • Testing tools are software applications used to automate the testing process of software applications.

    • Automation testing in NRI gatherings can involve testing event registration websites, mobile apps for event

  • Answered by AI
  • Q2. Say about some scripts to debug the issue
  • Ans. 

    To debug issues in automation testing, scripts can be used to identify and resolve the root cause of the problem.

    • Use logging statements to track the flow of the script and identify where the issue occurs

    • Implement error handling mechanisms to catch and handle exceptions gracefully

    • Utilize debugging tools provided by the automation testing framework to step through the script and pinpoint the problem

    • Add assertions in the ...

  • Answered by AI
  • Q3. Is tocollect , analyse and finalize purpose of performance testing
  • Ans. 

    Performance testing is conducted to collect, analyze, and finalize the purpose of testing the performance of a system.

    • Collect data on system performance under different conditions

    • Analyze the data to identify bottlenecks and areas for improvement

    • Finalize the purpose of performance testing based on analysis results

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2022. 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 - Aptitude Test 

Testing interstate related Questions

Round 3 - Technical 

(2 Questions)

  • Q1. Use testing methods
  • Ans. 

    Testing methods include manual testing, automated testing, exploratory testing, regression testing, and acceptance testing.

    • Manual testing involves manually executing test cases and recording results.

    • Automated testing involves using software tools to execute tests and compare actual results with expected results.

    • Exploratory testing involves exploring the software to find defects and issues.

    • Regression testing involves re...

  • Answered by AI
  • Q2. Different types of testing
  • Ans. 

    Different types of testing include unit, integration, system, acceptance, regression, performance, and security testing.

    • Unit testing: testing individual units or components of the software

    • Integration testing: testing how different units or components work together

    • System testing: testing the entire system as a whole

    • Acceptance testing: testing to ensure the software meets the requirements and is ready for release

    • Regressi...

  • Answered by AI
Round 4 - Coding Test 

Java, selenium automation testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Your any more than Question but my skills working in a job.Thank you for all.

Skills evaluated in this interview

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

I applied via Site and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Python , java, c, c++, c sharp, azure

Round 2 - Aptitude Test 

Arithmetic , reasoning, english, logical, puzzle,

Interview Preparation Tips

Interview preparation tips for other job seekers - More work on aptitude and codeing part
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Can you explain the Maven build lifecycle?
  • Ans. 

    Maven build lifecycle consists of phases like compile, test, package, install, deploy.

    • Maven build lifecycle consists of three main phases: clean, default, and site.

    • Each phase consists of a series of goals that are executed in a specific order.

    • Some common goals in Maven build lifecycle include compile, test, package, install, and deploy.

    • The clean phase removes all files generated by the previous build.

    • The default phase ...

  • Answered by AI
  • Q2. What is the code to reverse a sentence?
  • Ans. 

    Code to reverse a sentence using array of strings.

    • Split the sentence into an array of words

    • Reverse the array

    • Join the array back into a sentence

  • Answered by AI
  • Q3. What is static block in java?
  • Ans. 

    Static block in Java is a block of code that is executed only once when the class is loaded.

    • Static block is used to initialize static variables of a class.

    • It is executed before the main method.

    • Syntax: static { // code to be executed }

    • Example: static { System.out.println("Static block executed"); }

  • Answered by AI
  • Q4. What is exclude and include in TestNG?
  • Ans. 

    Exclude and include in TestNG are used to specify which test methods to run or skip during test execution.

    • Exclude attribute is used to specify which test methods to skip during test execution

    • Include attribute is used to specify which test methods to run during test execution

    • Both attributes can be used in the testng.xml file or in the @Test annotation

    • Example: @Test(groups = {"smoke"}, excludeGroups = {"regression"})

  • Answered by AI
  • Q5. What is code for reverse a digit?
  • Ans. 

    To reverse a digit, convert it to a string and then reverse the string.

    • Convert the digit to a string

    • Use built-in functions to reverse the string

    • Convert the reversed string back to a digit if needed

  • Answered by AI
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 - One-on-one 

(7 Questions)

  • Q1. What is a constructor and it's purpose?
  • Ans. 

    A constructor is a special type of method in a class that is automatically called when an object of that class is created.

    • Constructors have the same name as the class they belong to

    • They are used to initialize the object's state or perform any necessary setup

    • Constructors can have parameters to customize the initialization process

    • Example: public class Car { public Car(String color) { this.color = color; } }

  • Answered by AI
  • Q2. Can you override a Static Method?
  • Ans. 

    Yes, a static method can be overridden in Java using the concept of method hiding.

    • In Java, static methods cannot be overridden in the traditional sense like instance methods.

    • When a subclass defines a static method with the same signature as a static method in the superclass, it is called method hiding.

    • Method hiding does not follow polymorphism and is resolved at compile time based on the reference type.

    • Example: class...

  • Answered by AI
  • Q3. Can you create a Static local variable inside a Static method
  • Ans. 

    Yes, a static local variable can be created inside a static method.

    • Yes, a static local variable can be declared inside a static method in programming languages like C++.

    • Static local variables retain their values between function calls.

    • Example: static void myStaticMethod() { static int count = 0; count++; }

  • Answered by AI
  • Q4. What is the memory allocation for a String?
  • Ans. 

    String memory allocation is dynamic and depends on the length of the string.

    • String memory allocation is dynamic and can change based on the length of the string.

    • In Java, a String object is stored in the heap memory.

    • Each character in a String typically takes up 2 bytes of memory.

    • String objects in Java are immutable, meaning once a String object is created, it cannot be changed.

  • Answered by AI
  • Q5. Can you create a Static method inside an Abstract class or Interface?
  • Ans. 

    Yes, you can create a static method inside an abstract class or interface.

    • Static methods can be defined in interfaces since Java 8.

    • Static methods in interfaces are used for providing utility methods that are not tied to any specific instance of the interface.

    • Static methods in abstract classes can be used for common functionality that does not require an instance of the class.

  • Answered by AI
  • Q6. What is the Parent class of Java?
  • Ans. 

    The parent class of Java is the Object class.

    • All classes in Java are directly or indirectly derived from the Object class.

    • The Object class is the root class in Java's class hierarchy.

    • It provides methods that are common to all objects in Java, such as toString(), equals(), and hashCode().

  • Answered by AI
  • Q7. What is Window Handles in Selenium?
  • Ans. 

    Window Handles in Selenium are unique identifiers used to handle multiple browser windows in a Selenium test script.

    • Window Handles are unique alphanumeric strings assigned to each browser window opened by Selenium.

    • They are used to switch between different browser windows during a test script execution.

    • Window Handles can be obtained using getWindowHandles() method in Selenium.

    • Example: Set handles = driver.getWindowHandl

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Mphasis Automation Test Engineer interview:
  • Selenium
  • Java
  • OOPS
  • Manual Testing
Interview preparation tips for other job seekers - Nowadays, the interviewers expect the same Java language of a Developer as a Tester. But, how will that be possible? If a Tester has the same knowledge as a Developer, then why would he/she become a Tester instead of a Developer? Please open up your thoughts to the Interviewer, so that they can think before confusing with the deep logical knowledge.

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. Code to print the no of Times the letters present in a string
  • Ans. 

    Code to count the occurrences of each letter in a string and print the result

    • Iterate through each character in the string

    • Use a dictionary to store the count of each letter

    • Print the count of each letter at the end

  • Answered by AI
  • Q2. What are the ways to start a Appium server
  • Ans. 

    Appium server can be started using command line, programmatically in code, or using Appium desktop app.

    • Start Appium server using command line by running 'appium' command

    • Start Appium server programmatically in code using Appium server programmatically in code using AppiumDriverLocalService class

    • Start Appium server using Appium desktop app by launching the app and starting the server

  • Answered by AI
  • Q3. How to run tests parallel for mobile devices
  • Ans. 

    Tests can be run parallel for mobile devices using test automation frameworks like Appium or Espresso.

    • Use test automation frameworks like Appium or Espresso to run tests parallel for mobile devices

    • Leverage cloud-based testing platforms like Sauce Labs or BrowserStack for parallel testing on multiple devices

    • Implement parallel test execution using tools like TestNG or JUnit in combination with Appium or Espresso

    • Utilize d...

  • Answered by AI
  • Q4. How do you automate otp in mobile
  • Ans. 

    Automating OTP in mobile involves using automation tools to interact with the OTP input field and validate the received OTP.

    • Use automation tools like Appium or Espresso to interact with the OTP input field

    • Extract the OTP from the message received on the mobile device

    • Validate the extracted OTP with the OTP input field

    • Handle scenarios where OTP validation fails

  • Answered by AI
  • Q5. What are desired capabilities
  • Ans. 

    Desired capabilities are a set of properties or attributes that define the behavior of a browser or mobile device in Selenium automation testing.

    • Desired capabilities are key-value pairs that are used to configure the WebDriver instances in Selenium.

    • They can be used to set properties like browser name, version, platform, and other settings.

    • For example, setting 'browserName' to 'chrome' will launch the Chrome browser dur

  • Answered by AI
  • Q6. How do you tell appium to run tests on ios or Android devices
  • Ans. 

    To run tests on iOS or Android devices using Appium, specify the platformName capability in desired capabilities.

    • Specify platformName capability as 'iOS' for iOS devices and 'Android' for Android devices

    • Include other necessary desired capabilities like deviceName, platformVersion, appPackage, appActivity, etc.

    • Example: capabilities.setCapability('platformName', 'iOS');

  • Answered by AI
  • Q7. How to set up automation for ios devices
  • Ans. 

    Setting up automation for iOS devices involves using tools like Appium and Xcode for testing mobile applications.

    • Install Xcode on your Mac machine

    • Set up Appium for iOS automation

    • Connect your iOS device to the Mac machine

    • Create test scripts using Appium for iOS apps

    • Execute the test scripts on the connected iOS device

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic selenium and Basic Java
Round 2 - Technical 

(1 Question)

  • Q1. Java Program - Reverse a string Selenium - stale element
  • Ans. 

    Reverse a string using Java program and handle stale element in Selenium

    • Create a Java program to reverse a string using StringBuilder or char array

    • In Selenium, handle stale element exception by refreshing the element or using WebDriverWait

    • Example: Java program - input: 'hello', output: 'olleh'; Selenium - handle stale element by refreshing the element before interacting with it

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your expected salary
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Automation Test Engineers.

    • I have researched the average salary range for Automation Test Engineers in this location.

    • I am looking for a competitive salary that reflects my expertise in automation testing.

    • I am open to negotiation based on the overall compensation package offered.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in May 2024.

Round 1 - Technical 

(10 Questions)

  • Q1. Basics of Selenium(Windowhandles,Screenshot,Actions class,Selector Class,) with syntax
  • Q2. Asked to write Automation Framework architecture
  • Q3. What are the different gherkin words
  • Ans. 

    Gherkin words are keywords used in Gherkin syntax for writing test scenarios in Behavior Driven Development (BDD).

    • Feature

    • Scenario

    • Given

    • When

    • Then

    • And

    • But

  • Answered by AI
  • Q4. What we will use in plugin
  • Ans. 

    Plugins are used to extend the functionality of a software application.

    • Plugins are additional software components that can be added to an existing application to provide new features or functionalities.

    • They can be used to customize the behavior of the application without modifying its core code.

    • Examples of plugins include browser extensions, WordPress plugins, and Adobe Photoshop filters.

  • Answered by AI
  • Q5. How to run runner class
  • Ans. 

    To run a runner class, you can use a test runner tool like JUnit or TestNG in your automation testing framework.

    • Use a test runner tool like JUnit or TestNG to execute the runner class

    • Add the @RunWith annotation in JUnit or specify the runner class in TestNG XML file

    • Make sure the runner class includes the necessary setup and teardown methods for test execution

  • Answered by AI
  • Q6. Java oops, strings , exception handling
  • Q7. How to run parallel mode in testng,groups,priority
  • Ans. 

    TestNG allows running tests in parallel mode using groups and priorities.

    • Use 'parallel' attribute in testng.xml file to specify parallel mode (e.g. )

    • Use 'groups' attribute in testng.xml file to group tests that should run in parallel (e.g. )

    • Use 'priority' attribute in testng.xml file to specify the order in which tests should run (e.g.

  • Answered by AI
  • Q8. Write Merge Sort Programme
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges them back together.

    • Divide the array into two halves recursively

    • Sort each half using Merge Sort recursively

    • Merge the sorted halves back together

  • Answered by AI
  • Q9. Write Reverse a string programme
  • Ans. 

    Program to reverse a string using array of characters

    • Create an array of characters from the input string

    • Iterate through the array in reverse order and append each character to a new string

    • Return the reversed string

  • Answered by AI
  • Q10. Write syntax of data driven testing (XSSF Workbook) Syntax
  • Ans. 

    Data driven testing syntax using XSSF Workbook

    • Create XSSFWorkbook object

    • Get the sheet from the workbook

    • Iterate through rows and columns to fetch test data

    • Use test data in your test cases

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Selenium basics ( window handles , screenshot,reports, file upload and download, Add extension, Headless mode)

Interview Preparation Tips

Interview preparation tips for other job seekers - I would say it is easy to crack Service based Companies. Just prepare all the concepts of Selenium, Java,TestNG,Maven,GitHub and basic 20 Programmes.

For Selenium and BDD(Cucumber)Learn Rahul Shetty Udemy course
For Java search and learn top 200 interview questions.
Basic programmes like ( Duplicate characters,reverse string,unique characters, string anagram, Bubble sort , merge sort, quick sort and some more) .

How I switched from my current company.
Do’s
Uninstall social media apps.
Stop watching movies.
Stop eating Junk food.
Study at least 1-2 hours daily.
Listen motivational songs.
Make connections on LinkedIn.
Make single page resume by creating on overleaf website.

How to apply to companies.
Don’t apply directly on company website(Big mistake)
Send resumes to hr directly(u will get their mails on some posts on LinkedIn)
Ask referral on LinkedIn.
Update Naukri daily 9am and put notice period to 30 or 15days.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. List, lambda function, reverse string program
  • Q2. Sort the list, dictionary
Round 2 - Technical 

(1 Question)

  • Q1. OOP concept, Decorator, list to dictionary, Linux

HCLTech Interview FAQs

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

Some of the top questions asked at the HCLTech Automation Testing interview -

  1. Have you ever faced synchronization problem ? How did you overcome the...read more
  2. What is framework ? Explain the frameworks you worked on in your proje...read more
  3. What are the exceptions handled other than NosuchElementExcept...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 HCLTech interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Join HCLTech Find your spark and discover what drives you forward

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
HCLTech Automation Testing Salary
based on 6 salaries
₹1 L/yr - ₹4.2 L/yr
43% less than the average Automation Testing Salary in India
View more details

HCLTech Automation Testing Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
HCL Tech Hiring For Automation Testing Role

Noida,

Hyderabad / Secunderabad

3-7 Yrs

Not Disclosed

HCL Tech Hiring For Automation Testing Role

Gurgaon / Gurugram,

Chennai

+1

4-9 Yrs

Not Disclosed

Automation Testing-Robot Framework

Hyderabad / Secunderabad,

Chennai

7-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
22.4k salaries
unlock blur

₹1.2 L/yr - ₹8 L/yr

Technical Lead
20.8k salaries
unlock blur

₹6.9 L/yr - ₹25 L/yr

Senior Software Engineer
15.5k salaries
unlock blur

₹4 L/yr - ₹16.5 L/yr

Lead Engineer
14.8k salaries
unlock blur

₹4.2 L/yr - ₹14 L/yr

Analyst
13.9k salaries
unlock blur

₹1.3 L/yr - ₹6.6 L/yr

Explore more salaries
Compare HCLTech with

TCS

3.7
Compare

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

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