-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Closed
Labels
B-docsAPI Docs; see other repo for website documentationAPI Docs; see other repo for website documentationC-pyPython BindingsPython BindingsI-defectSomething is not working as intendedSomething is not working as intended
Description
What happened?
The API documentation for the WebDriver classes is missing the methods that can be invoked on said classes (see for example https://www.selenium.dev/selenium/docs/api/py/webdriver_chrome/selenium.webdriver.chrome.webdriver.html).
The API documentation is also missing the canonical shorter path aliases (e.g. selenium.webdriver.Chrome is not documented).
You might be able to fix the former by including the following in your Sphinx configuration:
autodoc_default_options = {
'members': True,
'member-order': 'bysource',
'undoc-members': True,
'inherited-members': True,
}
How can we reproduce the issue?
Check the API documentation at https://www.selenium.dev/selenium/docs/api/py/api.html.
Relevant log output
N/A
Operating System
N/A
Selenium version
N/A
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?
No response
Metadata
Metadata
Assignees
Labels
B-docsAPI Docs; see other repo for website documentationAPI Docs; see other repo for website documentationC-pyPython BindingsPython BindingsI-defectSomething is not working as intendedSomething is not working as intended