public static void main(String[] args) {
File f1 = new File("./Browsers/MicrosoftWebDriver.exe");
String Path = f1.getPath();
System.out.print("Path Is " + Path);
System.setProperty("webdriver.edge.driver", Path);
WebDriver driver = new EdgeDriver();
}
Also not throwing any known error, just saying
Unknown error (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 3.52 seconds
Details:
OS : Windows10
Binding : Java
selenium-edge-driver: LATEST { Also tried with 2.53.1 and previous}
Can anyone please help me, to understand the issue here.
--