Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion appium/webdriver/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def __init__( # noqa: PLR0913
remote_server_addr=command_executor, keep_alive=keep_alive, ignore_certificates=not strict_ssl
)
client_config.remote_server_addr = command_executor
command_executor = AppiumConnection(remote_server_addr=command_executor, client_config=client_config)
command_executor = AppiumConnection(client_config=client_config)
elif isinstance(command_executor, AppiumConnection) and strict_ssl is False:
logger.warning(
"Please set 'ignore_certificates' in the given 'appium.webdriver.appium_connection.AppiumConnection' or "
Expand Down