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 9a47aad commit edbc263Copy full SHA for edbc263
appium/webdriver/appium_connection.py
@@ -62,3 +62,7 @@ def get_remote_connection_headers(cls, parsed_url: 'ParseResult', keep_alive: bo
62
RemoteConnection.extra_headers = {}
63
64
return headers
65
+
66
+ # TODO: remove after https://github.com/SeleniumHQ/selenium/pull/14692 merge
67
+ def _request(self, method, url, body=None):
68
+ return super()._request(method, url, body=body, timeout=self._client_config.timeout)
0 commit comments