Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Test Automation for Complete Beginners
Rating: 4.4 out of 5(961 ratings)
21,151 students

Test Automation for Complete Beginners

All steps that you need to begin your Test Automation Journey
Last updated 8/2026
English
English [Auto],

What you'll learn

  • Introduction to Test Automation
  • Java programming for Test Automation Engineers
  • Installing Selenium Webdriver
  • Writing Test Scripts using Selenium Webdriver

Course content

21 sections136 lectures14h 40m total length
  • Introduction to Test Automation5:46

    Define test automation by replacing manual steps with automated workflows, covering preconditions, execution, result comparison, defect reporting, and test reporting, using Selenium WebDriver and Testing G.

  • Myths & Facts of Test Automation4:01

    Clarify myths and facts about test automation, showing how automation functions as a versatile test activity across all test levels and types, and why it cannot replace manual testing.

  • Benefits of Test Automation5:06

    Highlight seven benefits of test automation, including faster execution time, repeatability, reusability, higher environment coverage, cost savings, improved accuracy, and earlier time to market.

  • Comparison between Manual & Automated Testing21:56

    Compare manual vs automated testing to decide which fits your project, covering definitions, speed, costs, accuracy, reusability, maintenance, scalability, human involvement, learning curve, tools, use cases, and limitations.

Requirements

  • Theoretical knowledge about basic software testing concepts
  • Knowledge about test scenario, test case, & defect report writing

Description

There are two kinds of testing in the world of software—manual and automated. Some types of manual testing, such as discovery testing and usability testing, are invaluable. You can do other kinds of testing—like regression testing and functional testing—manually, but it’s a fairly wasteful practice for humans to keep doing the same thing over and over again. It’s these kinds of repetitive tests that lend themselves to test automation.

Test automation is the practice of running tests automatically, managing test data, and utilizing results to improve software quality. It’s primarily a quality assurance measure, but its activities involve the commitment of the entire software production team. From business analysts to developers and DevOps engineers, getting the most out of test automation takes the inclusion of everyone.

Selenium WebDriver is a web framework that permits you to execute cross-browser tests. This tool is used for automating web-based application testing to verify that it performs expectedly. Selenium WebDriver allows you to choose a programming language to create test scripts.

TestNG is an automation testing framework in which NG stands for “Next Generation”. TestNG is inspired by JUnit which uses the annotations . TestNG overcomes the disadvantages of JUnit and is designed to make end-to-end testing easy.

Using TestNG, you can generate a proper report, and you can easily come to know how many test cases are passed, failed, and skipped. You can execute the failed test cases separately.

For example:

  • Suppose, you have five test cases, one method is written for each test case (Assume that the program is written using the main method without using testNG). When you run this program first, three methods are executed successfully, and the fourth method is failed. Then correct the errors present in the fourth method, now you want to run only fourth method because first three methods are anyway executed successfully. This is not possible without using TestNG.

  • The TestNG in Selenium provides an option, i.e., testng-failed.xml file in test-output folder. If you want to run only failed test cases means you run this XML file. It will execute only failed test cases.

Beside above concept, you will learn more on TestNG, like what are the Advantages of TestNG, how to create test methods using test annotations, how to convert these classes into testing suite file and execute through the eclipse as well as from the command line.

Who this course is for:

  • Software Testers
  • QA Engineers
  • Software Engineers