Fix annotation in selenium.webdriver.remove.webdriver (#5859)

Docstring description of the argument includes this text:

"Either a string representing URL of the remote server or
a custom remote_connection.RemoteConnection object."
This commit is contained in:
Jukka Lehtosalo
2021-08-06 17:25:25 +01:00
committed by GitHub
parent 6ccf5e7d65
commit bd416902f7

View File

@@ -24,7 +24,7 @@ class WebDriver:
error_handler: Any
def __init__(
self,
command_executor: str = ...,
command_executor: str | RemoteConnection = ...,
desired_capabilities: Any | None = ...,
browser_profile: Any | None = ...,
proxy: Any | None = ...,