Test NG Basics

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… Continue reading Test NG Basics

ChromeOptions in Selenium Webdriver

ChromeOptions is a class in Selenium that is used to set the capability and customization and configuration of the ChromeDriver session as well.  This class inherits the MutableCapabilities class. How to add chrome options in selenium -> Just by creating an instance ChromeOptions options = new ChromeOptions(); Uses of chrome options: It is used to… Continue reading ChromeOptions in Selenium Webdriver

What is WEBDRIVERMANAGER In SELENIUM Web Driver

WebDriverManager is an open-source library that is used to automate the handling of browser driver binaries. Users can add this library to their selenium project using a build tool like Maven Why we are using WebDriverManager? To run the selenium script in the browser we need to download the driver binary from the official site of… Continue reading What is WEBDRIVERMANAGER In SELENIUM Web Driver