WebDriver.jl
WebDriver.jl copied to clipboard
route path is out of date!
refer : https://www.w3.org/TR/webdriver/#protocol 6.5 Endpoints
the default path of RemoteWebDriver in 04_WebDriver.jl:
function RemoteWebDriver(
capabilities::Capabilities;
host::AbstractString = "localhost",
port::Integer = 4444,
path::AbstractString = "/wd/hub",
kwargs...,
)::RemoteWebDriver
should be ""
which is tested.
Hi @deahhh, this is still one of the divergences from the W3 Protocol in the package. The reason for it is that the recommended tool is selenium/standalone-chrome:4. Selenium still hasn't updated its latest release to the current protocol. As soon as that happens, I would be happy to make the change. I have been moving from the Wire Protocol to the W3 based as soon as a Selenium release makes the change.
Thanks! By the way, does it's the Wire Protocol which prevent you update the dependency HTTP version?