You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 the code I am using
first case: chrome with local chromedriver
using WebDriver
using DefaultApplication
## 1 - Initialization
DefaultApplication.open("chromedriver.exe")
sleep(5)
capabilities =Capabilities("chrome")
wd =RemoteWebDriver(capabilities, host ="localhost" )
status(wd) #here it fails
session =Session(wd)
When I run the status(wd) or Session(wd), it launch the next error:
I have noticed that you are running the code on a Mac but are using a ".exe" binary. Notice that the DefaultApplication.open() opens a specific file on the defined path. Are you running the ".exe" with for example Boot Camp? Can you check if the binary was open correctly on your laptop without errors?
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 the code I am using
first case: chrome with local chromedriver
When I run the status(wd) or Session(wd), it launch the next error:
Second case: Using Firefox and Geckodriver
And get the same error
Using Docker
Also I tried to follow the documentation using docker containers, I got an error a bit different:
Is there something am I missiing? I am using julia 1.9.2, and WebDriver v0.2.0, in a Mac M1
The text was updated successfully, but these errors were encountered: