Skip to content

Commit 7f8a532

Browse files
titusfortnerdiemolVietND96AutomatedTester
authored
[py] implement configurable configuration class for the http client (#13286)
--------- Signed-off-by: Viet Nguyen Duc <[email protected]> Co-authored-by: Diego Molina <[email protected]> Co-authored-by: Viet Nguyen Duc <[email protected]> Co-authored-by: David Burns <[email protected]>
1 parent d6d2fdd commit 7f8a532

File tree

10 files changed

+522
-84
lines changed

10 files changed

+522
-84
lines changed

py/selenium/webdriver/chrome/remote_connection.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
import typing
17+
18+
from typing import Optional
1819

1920
from selenium.webdriver import DesiredCapabilities
2021
from selenium.webdriver.chromium.remote_connection import ChromiumRemoteConnection
22+
from selenium.webdriver.remote.client_config import ClientConfig
2123

2224

2325
class ChromeRemoteConnection(ChromiumRemoteConnection):
@@ -27,12 +29,14 @@ def __init__(
2729
self,
2830
remote_server_addr: str,
2931
keep_alive: bool = True,
30-
ignore_proxy: typing.Optional[bool] = False,
32+
ignore_proxy: Optional[bool] = False,
33+
client_config: Optional[ClientConfig] = None,
3134
) -> None:
3235
super().__init__(
3336
remote_server_addr=remote_server_addr,
3437
vendor_prefix="goog",
3538
browser_name=ChromeRemoteConnection.browser_name,
3639
keep_alive=keep_alive,
3740
ignore_proxy=ignore_proxy,
41+
client_config=client_config,
3842
)

py/selenium/webdriver/chromium/remote_connection.py

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17+
from typing import Optional
1718

19+
from selenium.webdriver.remote.client_config import ClientConfig
1820
from selenium.webdriver.remote.remote_connection import RemoteConnection
1921

2022

@@ -25,9 +27,15 @@ def __init__(
2527
vendor_prefix: str,
2628
browser_name: str,
2729
keep_alive: bool = True,
28-
ignore_proxy: bool = False,
30+
ignore_proxy: Optional[bool] = False,
31+
client_config: Optional[ClientConfig] = None,
2932
) -> None:
30-
super().__init__(remote_server_addr, keep_alive, ignore_proxy)
33+
super().__init__(
34+
remote_server_addr=remote_server_addr,
35+
keep_alive=keep_alive,
36+
ignore_proxy=ignore_proxy,
37+
client_config=client_config,
38+
)
3139
self.browser_name = browser_name
3240
commands = self._remote_commands(vendor_prefix)
3341
for key, value in commands.items():

py/selenium/webdriver/common/options.py

+10
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717
import typing
18+
import warnings
1819
from abc import ABCMeta
1920
from abc import abstractmethod
2021
from enum import Enum
@@ -514,6 +515,15 @@ def add_argument(self, argument) -> None:
514515
def ignore_local_proxy_environment_variables(self) -> None:
515516
"""By calling this you will ignore HTTP_PROXY and HTTPS_PROXY from
516517
being picked up and used."""
518+
warnings.warn(
519+
"using ignore_local_proxy_environment_variables in Options has been deprecated, "
520+
"instead, create a Proxy instance with ProxyType.DIRECT to ignore proxy settings, "
521+
"pass the proxy instance into a ClientConfig constructor, "
522+
"pass the client config instance into the Webdriver constructor",
523+
DeprecationWarning,
524+
stacklevel=2,
525+
)
526+
517527
super().ignore_local_proxy_environment_variables()
518528

519529
def to_capabilities(self):

py/selenium/webdriver/edge/remote_connection.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
import typing
17+
18+
from typing import Optional
1819

1920
from selenium.webdriver import DesiredCapabilities
2021
from selenium.webdriver.chromium.remote_connection import ChromiumRemoteConnection
22+
from selenium.webdriver.remote.client_config import ClientConfig
2123

2224

2325
class EdgeRemoteConnection(ChromiumRemoteConnection):
@@ -27,12 +29,14 @@ def __init__(
2729
self,
2830
remote_server_addr: str,
2931
keep_alive: bool = True,
30-
ignore_proxy: typing.Optional[bool] = False,
32+
ignore_proxy: Optional[bool] = False,
33+
client_config: Optional[ClientConfig] = None,
3134
) -> None:
3235
super().__init__(
3336
remote_server_addr=remote_server_addr,
3437
vendor_prefix="goog",
3538
browser_name=EdgeRemoteConnection.browser_name,
3639
keep_alive=keep_alive,
3740
ignore_proxy=ignore_proxy,
41+
client_config=client_config,
3842
)

py/selenium/webdriver/firefox/remote_connection.py

+16-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,29 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717

18+
from typing import Optional
19+
1820
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
21+
from selenium.webdriver.remote.client_config import ClientConfig
1922
from selenium.webdriver.remote.remote_connection import RemoteConnection
2023

2124

2225
class FirefoxRemoteConnection(RemoteConnection):
2326
browser_name = DesiredCapabilities.FIREFOX["browserName"]
2427

25-
def __init__(self, remote_server_addr, keep_alive=True, ignore_proxy=False) -> None:
26-
super().__init__(remote_server_addr, keep_alive, ignore_proxy)
28+
def __init__(
29+
self,
30+
remote_server_addr: str,
31+
keep_alive: bool = True,
32+
ignore_proxy: Optional[bool] = False,
33+
client_config: Optional[ClientConfig] = None,
34+
) -> None:
35+
super().__init__(
36+
remote_server_addr=remote_server_addr,
37+
keep_alive=keep_alive,
38+
ignore_proxy=ignore_proxy,
39+
client_config=client_config,
40+
)
2741

2842
self._commands["GET_CONTEXT"] = ("GET", "/session/$sessionId/moz/context")
2943
self._commands["SET_CONTEXT"] = ("POST", "/session/$sessionId/moz/context")

0 commit comments

Comments
 (0)