What is a Collections Framework? A collections framework is a unified architecture for representing and manipulating collections.All collections frameworks contain the following: Interfaces: These are abstract data types that represent collections. Interfaces allow collections to be manipulated independently of the details of their representation. In object-oriented languages, interfaces generally form a hierarchy. Implementations: These are the concrete… Continue reading Collections framework (Usages)- For selenium
Tag: Selenium
Java Concepts For Selenium
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