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

A WebDriver / JSON Wire Protocol Binding Compatible with Selenium for the Julia Language.

Results 7 WebDriver.jl issues
Sort by recently updated
recently updated
newest added

## Description The `refresh!` command in its current state does not what it says, it only tries to post no data to the `timeouts` endpoint. This PR restores the desired...

I am trying to do an web scrapping excercise using webdriver.jl to control the browser, but I got some problems to starting a session in Chrome and Firefox. This is...

bug

refer : https://www.w3.org/TR/webdriver/#protocol 6.5 Endpoints the default path of RemoteWebDriver in 04_WebDriver.jl: ```julia function RemoteWebDriver( capabilities::Capabilities; host::AbstractString = "localhost", port::Integer = 4444, path::AbstractString = "/wd/hub", kwargs..., )::RemoteWebDriver ``` should be...

bug

You know, HTTP requests always with some headers, for example: ``` Alt-Used | www.google.com Connection | keep-alive Content-Length | 0 Cookie | 1P_JAR=2022-06-06-08; AEC=AakniGPg9f0jElmQFThLWYaQOi4MPjtxo3GDqN858tVyQ5Levest4-v_uVg; NID=511=QnbgBgSEcnT2maCyZWrdzFYJSNLf9VJFAwfgvRL2JcgAEMtWi-MrJ6V90Io95_WheDIBjUnBPaF0ouKASOKaPfLYYvePjCnGn3c27_upSWIA8OlrBE6k4FkcRUyqOEZJCGpYB_J_pj13ZYWFuuXKEF1IEEi-35WrXdZpX01_Z3s; ANID=AHWqTUl_RHy8pJhn4lkhbmY7mpRMPUvdQHmo8MKeoJkBI5cQgZ0bePgqyehtLkk9; OTZ=6529362_24_24__24_; DV=k-pXlNQcK0srMMNiN6YW-gZEx6OAExjeCHNonvMxfBQtAgA Host |...

enhancement

# default path & content header change for selenium 4 ## Description selenium 4 have changed host path from "/wd/hub" -> "" also content-type header need to have charset included....

Is solution: If I run a driver with the port number, there is no problem "chromedriver ---port = 4444" **julia> status(wd) ERROR: HTTP.ConnectError for url = `http://localhost:4444/status`: IOError: connect: connection...

bug

The same code working with chromedriver. ```julia> using WebDriver, Gumbo, Cascadia,StringEncodings julia> using DefaultApplication julia> # DefaultApplication.open("chromedriver.exe") julia> DefaultApplication.open("geckodriver.vbs") Process(`'C:\Windows\system32\cmd.exe' /c start geckodriver.vbs`, ProcessRunning) julia> sleep(1) julia> capabilities = Capabilities("firefox")...

bug