Hi,
I initiated web driver and try to connect a given url and it returns an exception
What happen is : Open the web browser but does not direct to given Url and print error on consle log.
My code is below:
Webdriver driver = new EdgeDriver(); driver.get("https://docs.microsoft.com/en-us/welcome-to-docs");Error:
org.openqa.selenium.WebDriverException: Unable to parse remote response: Unknown error at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:115) at org.openqa.selenium.remote.ProtocolHandshake.createSession(ProtocolHandshake.java:74) at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:136)
I set developer mode
I already installed WebDriver using below command in (C:\WINDOWS\system32>):
DISM.exe /Online /Add-Capability /CapabilityName:Microsoft.WebDriver~~~~0.0.1.0
I use below versions:
selenium version: '3.141.59'
Browser: Microsoft Edge , Version
80.0.361.50 (Official build) (64-bit)
os build: 18362.535
Windows Edition: 10 version 1903
Any Idea on this ?