What is the difference between ChromeDriver and WebDriver?
WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server that implements the W3C WebDriver standard. What is the relation between WebDriver and ChromeDriver? driver = new ChromeDriver(); WebDriver is an interface and all the methods which …