WebDriver

WebDriver Interface

WebDriver is an interface in selenium library which the object representation of Web Browser. Implementation of which is provided by different Browser types line Chrome, FireFox etc.,

WebDriver driver = new ChromeDriver;
//or
WebDriver driver = new FireFoxDriver();

Now we can perform all the actions on the browser using this object.

Some of which are are.

These details are taken from Selenium Official Java Docs.

Last updated