-
Notifications
You must be signed in to change notification settings - Fork 13
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
Is /sessions W3C compliant? #24
Comments
I remember I noticed that too, but it appears I was able to run If you wanted to run the web_driver_client tests against geckodriver directly you could edit
Once these updates are done, you should be able to run the geckodriver tests with
I'm curious what you find out. I think I remember geckodriver was a bit buggy, but that could have been because I was trying to send JWP requests to it. 😉 |
Yes, I did all that, already. That is how I noticed that the calls to FetchSessions were failing. I wonder if this means that |
I think it's still useful for drivers that support it. Especially when when wallaby starts up chromedriver (I believe that returns a w3c response). Out of curiosity, what is the error being returned? |
Returns a 405 Method Not Allowed. Seems to return that for any endpoint that doesn't exists. |
I think geckodriver also only supports one sessions per instance of the server, which might explain why it doesn't implement an endpoint to fetch all sessions. |
I was playing around with the repo last night to see if it could run Geckodriver as a standalone server (no selenium), and I was seeing some failing tests when calling
FetchSessions
.After some investigations, it looks like that endpoint is not in the webdriver spec. Geckodriver has never implemented the JWP, which would explain why it doesn't implement that endpoint but chromedriver does.
Does that seem correct?
Thanks!
PS: I was wanting to see if geckodriver standalone would be faster than selenium+geckodriver
The text was updated successfully, but these errors were encountered: