[🐛 Bug]: Status endpoint
See original GitHub issueWhat happened?
Someone pointed out that I incorrectly removed status endpoint from Python (still supported https://w3c.github.io/webdriver/#status). I removed it because no method was calling it. Need to make sure all the languages have methods that can call this endpoint. Don’t have time to investigate now and don’t want to forget.
How can we reproduce the issue?
driver.status
Relevant log output
none
Operating System
n/a
Selenium version
latest
What are the browser(s) and version(s) where you see this issue?
n/a
What are the browser driver(s) and version(s) where you see this issue?
n/a
Are you using Selenium Grid?
n/a
Issue Analytics
- State:
- Created a year ago
- Reactions:1
- Comments:20 (18 by maintainers)
Top Results From Across the Web
How to Get Cisco Bug Status & Notifications
You can get view and subscribe to Cisco product defect updates for specific bugs that affect you or your deployment. Bug Status. Go...
Read more >Jira 'status' endpoint response meanings
Jira has a '/status' endpoint which is a very lightweight endpoint that can be used by load balancers, other monitoring and admins to ......
Read more >A guide to API health check - Testfully
API health check endpoint returns the operational status of the API ... minimize the risk associated with monitoring tool downtime and bug.
Read more >Troubleshooting, API Status, and Health Checks - Arkose Labs!
On the server side, Verify API calls ensure that a valid token is present. An unexpectedly long response time or server side HTTP...
Read more >HelmChart should use /readyz endpoint to check the ... - GitHub
The status endpoint as you can see in the Selenium ticket returns always ... [ 🐛 Bug]: HelmChart should use /readyz endpoint to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We don’t need to do anything right now, just saying that if we are implementing something, it might make sense to ensure it works both locally and remotely, even when the use case is more obvious for remote.
@titusfortner What you suggested is possible because of the way the WebDriver interface and RemoteWebDriver class are designed in the Java bindings. Since all driver classes inherit RemoteWebDriver, they have access to the static status endpoint as long as the service URL is provided.
I will try and add a test to showcase this. However, C# implementation is slightly different and the PR changes only allow status API to be accessed from RemoteWebDriver. Once, we reach a consensus about how we want to access it, it can be easily updated.