What is the difference between ChromeDriver and WebDriver in selenium?
ChromeDriver driver = new ChromeDriver(); If you use ChromeDriver driver = new ChromeDriver(); the ChromeDriver instance which will get created through that we will be only able to invoke and act on the methods implemented by ChromeDriver and supported by Chrome Browser only. To act with other browsers we have to specifically create individual objects … Read more