My Edge Version: 18.18362 OS Build Version: 18.18362
Installed Edge Driver with the command DISM.exe /Online /Add-Capability /CapabilityName:Microsoft.WebDriver~~~~0.0.1.0
Selenium Java code to Initialize browser :
System.setProperty("webdriver.edge.driver", "C:\\Windows\\System32\\MicrosoftWebDriver.exe");
driver = new EdgeDriver();
The browser is getting opened but the url is not loading.
There are 4 paths where MicrosoftWebDriver.exe is present after installing with DISM.exe. Which among this should I use in Initializing?
- C:\Windows\WinSxS\wow64_microsoft-webdriver-server-components_31bf3856ad364e35_10.0.18362.1_none_cf827c8a6da82156
- C:\Windows\SysWOW64
- C:\Windows\WinSxS\amd64_microsoft-webdriver-server-components_31bf3856ad364e35_10.0.18362.1_none_c52dd23839475f5b
- C:\Windows\System32
I have also enabled developer mode in windows.
Still URL is not loading in EDGE. Can anyone help ?