Edge Driver
Microsoft Edge is the latest web browser launched with Microsoft Windows 10. Microsoft Edge was one of the first browsers to implement the W3C WebDriver standard and provides built-in support for Selenium WebDriver.
Similar to Internet Explorer, in order to execute test scripts on the Microsoft Edge browser, we need to use the EdgeDriver class and a standalone Microsoft WebDriver Server executable. The Microsoft WebDriver Server is maintained by the Microsoft Edge development team. You can find more information at https://docs.microsoft.com/en-gb/microsoft-edge/webdriver
Writing your first test script for the Edge browser
Let's set up the Microsoft WebDriver Server and create a test for testing the search feature on Microsoft Edge. We need to download and install Microsoft WebDriver Server on Windows 10 (https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/):
public class SearchTest {
WebDriver driver;
@BeforeMethod
public void setup() {
System.setProperty...