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 just wanted to share how I got Selenium working in Wallaby, as there seems to be some missing install instructions.
Firstly, it appears that Selenium version 4.8.3 is required, which I eventually figured out thanks to @matthewbrown48's hint. I originally tried brew install selenium-server which installed 4.22.0, but the wallaby tests ended up failing with (RuntimeError) Wallaby had an internal issue with HTTPoison: %HTTPoison.Error{id: nil, reason: :timeout}.
I downloaded selenium-server-4.8.3.jar. Which can be run like so: /homebrew/opt/openjdk/bin/java -jar ~/Downloads/selenium-server-4.8.3.jar standalone
I just wanted to share how I got Selenium working in Wallaby, as there seems to be some missing install instructions.
Firstly, it appears that Selenium version 4.8.3 is required, which I eventually figured out thanks to @matthewbrown48's hint. I originally tried
brew install selenium-server
which installed 4.22.0, but the wallaby tests ended up failing with(RuntimeError) Wallaby had an internal issue with HTTPoison: %HTTPoison.Error{id: nil, reason: :timeout}
.I downloaded selenium-server-4.8.3.jar. Which can be run like so:
/homebrew/opt/openjdk/bin/java -jar ~/Downloads/selenium-server-4.8.3.jar standalone
my config/test.exs:
For safari, there is no headless mode which is a bit disconcerting 😆. I was able to get it working by enabling it and running it as root.
The text was updated successfully, but these errors were encountered: