-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatible with Selenoid #229
Comments
@grelner Did you manage to use selenoid with thirtyfour? |
Hi! Yes! The necessary patches are in my fork https://github.com/grelner/thirtyfour |
looking forward to it! |
any updates on this? |
I've been trying to use thirtyfour with selenoid but the call to WebDriver::new fails.
The selenoid session api call is at /wd/hub/session while thirtyfour will always call /session . The reason is that thirtyfour uses Url::join to resolve url's with an argument that starts with '/'. Given webdriver url "http://localhost:4444/wd/hub" and "/session", Url::join will return http://localhost:4444/session
Personally I find the behavior of Url::join confusing, especially compared to Path::join, so this might not be intended behaviour?
The text was updated successfully, but these errors were encountered: