WebDriver.jl icon indicating copy to clipboard operation
WebDriver.jl copied to clipboard

route path is out of date!

Open deahhh opened this issue 2 years ago • 2 comments

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.

deahhh avatar Aug 12 '22 06:08 deahhh

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.

Nosferican avatar Aug 18 '22 21:08 Nosferican

Thanks! By the way, does it's the Wire Protocol which prevent you update the dependency HTTP version?

deahhh avatar Aug 25 '22 14:08 deahhh