We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7fdaa4 commit d52e243Copy full SHA for d52e243
appium/webdriver/webdriver.py
@@ -212,6 +212,7 @@ def __init__(
212
client_config: Optional[AppiumClientConfig] = None,
213
):
214
if isinstance(command_executor, str):
215
+ # Do not keep None to avoid warnings in Selenium which can prevent with ClientConfig instance usage.
216
if client_config is None:
217
client_config = AppiumClientConfig(remote_server_addr=command_executor)
218
# To prevent generating RemoteConnection in selenium
0 commit comments