seleniumbase 4.41.2__py3-none-any.whl → 4.41.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,2 +1,2 @@
1
1
  # seleniumbase package
2
- __version__ = "4.41.2"
2
+ __version__ = "4.41.3"
@@ -3137,7 +3137,9 @@ def get_driver(
3137
3137
  proxy_string, proxy_scheme = proxy_helper.validate_proxy_string(
3138
3138
  proxy_string, keep_scheme=True
3139
3139
  )
3140
- if proxy_string and proxy_user and proxy_pass:
3140
+ if proxy_user and not proxy_pass:
3141
+ proxy_pass = ""
3142
+ if proxy_string and proxy_user:
3141
3143
  proxy_auth = True
3142
3144
  elif proxy_pac_url:
3143
3145
  username_and_password = None
@@ -3164,7 +3166,9 @@ def get_driver(
3164
3166
  )
3165
3167
  if not proxy_pac_url.lower().endswith(".pac"):
3166
3168
  raise Exception('The proxy PAC URL must end with ".pac"!')
3167
- if proxy_pac_url and proxy_user and proxy_pass:
3169
+ if proxy_user and not proxy_pass:
3170
+ proxy_pass = ""
3171
+ if proxy_pac_url and proxy_user:
3168
3172
  proxy_auth = True
3169
3173
  if (
3170
3174
  is_using_uc(undetectable, browser_name)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seleniumbase
3
- Version: 4.41.2
3
+ Version: 4.41.3
4
4
  Summary: A complete web automation framework for end-to-end testing.
5
5
  Home-page: https://github.com/seleniumbase/SeleniumBase
6
6
  Author: Michael Mintz
@@ -128,8 +128,9 @@ Requires-Dist: pytest-xdist==3.6.1; python_version < "3.9"
128
128
  Requires-Dist: pytest-xdist==3.8.0; python_version >= "3.9"
129
129
  Requires-Dist: parameterized==0.9.0
130
130
  Requires-Dist: behave==1.2.6
131
- Requires-Dist: soupsieve==2.7
132
- Requires-Dist: beautifulsoup4<4.14,>=4.13.5
131
+ Requires-Dist: soupsieve==2.7; python_version < "3.9"
132
+ Requires-Dist: soupsieve~=2.8; python_version >= "3.9"
133
+ Requires-Dist: beautifulsoup4~=4.13.5
133
134
  Requires-Dist: pyotp==2.9.0
134
135
  Requires-Dist: python-xlib==0.33; platform_system == "Linux"
135
136
  Requires-Dist: markdown-it-py==3.0.0; python_version < "3.10"
@@ -3,7 +3,7 @@ sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647
3
3
  sbase/steps.py,sha256=EdJyNVJ1yxoHsc7qp8kzx0EESIkOh_033yLCvmaPcs4,43281
4
4
  seleniumbase/__init__.py,sha256=JFEY9P5QJqsa1M6ghzLMH2eIPQyh85iglCaQwg8Y8z4,2498
5
5
  seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
6
- seleniumbase/__version__.py,sha256=ZyfXu0aOBZHSqkS5yxS9fAUyg-y0JTxnmYBJ6YyVB04,46
6
+ seleniumbase/__version__.py,sha256=33QQxeiCJzToF77JtyOR29kdfFS__rlg8PAf8rlqs9M,46
7
7
  seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  seleniumbase/behave/behave_helper.py,sha256=f4CdiSSYM3gMAicSKWJInkVGFwpGXtHMD8fikTehopQ,24291
9
9
  seleniumbase/behave/behave_sb.py,sha256=guLihFsr1uJ4v2AR3r3Vy_BTeHrHwy2JEJxhp-MVnZA,59872
@@ -36,7 +36,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=tNy-bMDgwHJO3bZxMpmo9weSE8uhbH0C
36
36
  seleniumbase/console_scripts/sb_recorder.py,sha256=DH-n2fN7N9qyHMl7wjtn8MiliBgfw-1kwgmfg1GUuhk,10772
37
37
  seleniumbase/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  seleniumbase/core/application_manager.py,sha256=e_0sjtI8cjY5BNyZj1QBR0j6_oCScxGmSXYEpcYwuZE,576
39
- seleniumbase/core/browser_launcher.py,sha256=HKXqGykDUTflUYL-5Y-8DqxgNjq8mYXayARYYV-eaxA,247732
39
+ seleniumbase/core/browser_launcher.py,sha256=blf1TjsMyU6Lk_0jxDM_MLX5tk4XCToGxzwXWI333Po,247842
40
40
  seleniumbase/core/capabilities_parser.py,sha256=meIS2uHapTCq2ldfNAToC7r0cKmZDRXuYNKExM1GHDY,6038
41
41
  seleniumbase/core/colored_traceback.py,sha256=DrRWfg7XEnKcgY59Xj7Jdk09H-XqHYBSUpB-DiZt6iY,2020
42
42
  seleniumbase/core/create_db_tables.sql,sha256=VWPtrdiW_HQ6yETHjqTu-VIrTwvd8I8o1NfBeaVSHpU,972
@@ -137,9 +137,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.bat,sha256=Ftq-GrAKRYH2ssDPr
137
137
  seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443QFK8PryBpDmKn5Gy0s4o0vDSM,106
138
138
  seleniumbase/utilities/selenium_ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
139
  seleniumbase/utilities/selenium_ide/convert_ide.py,sha256=pZFnqEJQEKZPyNFjkLD29s2HPQgCrWW9XJWpCPhWOoM,31691
140
- seleniumbase-4.41.2.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
141
- seleniumbase-4.41.2.dist-info/METADATA,sha256=b-68nE0Tj2sDFfVAqvJ0Zix7jfof6zflUL8d1-Yn9jo,87490
142
- seleniumbase-4.41.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
- seleniumbase-4.41.2.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
- seleniumbase-4.41.2.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
- seleniumbase-4.41.2.dist-info/RECORD,,
140
+ seleniumbase-4.41.3.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
141
+ seleniumbase-4.41.3.dist-info/METADATA,sha256=VcWEKRpNA3DE-q2DczW6NA4TNtnJo42UB-JZHYBCCYc,87563
142
+ seleniumbase-4.41.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
+ seleniumbase-4.41.3.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
+ seleniumbase-4.41.3.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
+ seleniumbase-4.41.3.dist-info/RECORD,,