seleniumbase 4.40.4__py3-none-any.whl → 4.40.6__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.40.4"
2
+ __version__ = "4.40.6"
@@ -851,7 +851,7 @@ def main(override=None, intel_for_uc=None, force_uc=None):
851
851
  "Cannot determine which version of EdgeDriver to download!"
852
852
  )
853
853
  if use_version.isdigit():
854
- edgedriver_st = "https://msedgedriver.azureedge.net/LATEST_RELEASE"
854
+ edgedriver_st = "https://msedgedriver.microsoft.com/LATEST_RELEASE"
855
855
  use_version = "%s_%s_%s" % (edgedriver_st, use_version, suffix)
856
856
  url_request = requests_get_with_retry(use_version)
857
857
  if url_request.ok:
@@ -862,7 +862,7 @@ def main(override=None, intel_for_uc=None, force_uc=None):
862
862
  and use_version != "115.0.1901.183"
863
863
  ):
864
864
  use_version = "115.0.1901.183"
865
- download_url = "https://msedgedriver.azureedge.net/%s/%s" % (
865
+ download_url = "https://msedgedriver.microsoft.com/%s/%s" % (
866
866
  use_version,
867
867
  file_name,
868
868
  )
@@ -1377,9 +1377,9 @@ def _uc_gui_click_captcha(
1377
1377
  ):
1378
1378
  frame = '[data-testid*="challenge-"] div'
1379
1379
  elif driver.is_element_present(
1380
- "form.turnstile div#turnstile-widget div:not([class])"
1380
+ "div#turnstile-widget div:not([class])"
1381
1381
  ):
1382
- frame = "form.turnstile #turnstile-widget div:not([class])"
1382
+ frame = "div#turnstile-widget div:not([class])"
1383
1383
  elif driver.is_element_present(
1384
1384
  'form div:not([class]):has(input[name*="cf-turn"])'
1385
1385
  ):
@@ -1667,7 +1667,6 @@ def _uc_gui_handle_captcha_(driver, frame="iframe", ctype=None):
1667
1667
  driver.set_window_rect(win_x, win_y, width, height)
1668
1668
  time.sleep(0.33)
1669
1669
  tab_up_first = False
1670
- special_form = False
1671
1670
  if ctype == "cf_t":
1672
1671
  if (
1673
1672
  driver.is_element_present(".cf-turnstile-wrapper iframe")
@@ -1701,7 +1700,6 @@ def _uc_gui_handle_captcha_(driver, frame="iframe", ctype=None):
1701
1700
  ):
1702
1701
  frame = 'form div:not([class]):has(input[name*="cf-turn"])'
1703
1702
  tab_up_first = True
1704
- special_form = True
1705
1703
  elif (
1706
1704
  driver.is_element_present('[src*="/turnstile/"]')
1707
1705
  and driver.is_element_present("form div:not(:has(*))")
@@ -1715,6 +1713,10 @@ def _uc_gui_handle_captcha_(driver, frame="iframe", ctype=None):
1715
1713
  )
1716
1714
  ):
1717
1715
  frame = "body > div#check > div:not([class])"
1716
+ elif driver.is_element_present(
1717
+ "div#turnstile-widget div:not([class])"
1718
+ ):
1719
+ frame = "div#turnstile-widget div:not([class])"
1718
1720
  elif driver.is_element_present(".cf-turnstile-wrapper"):
1719
1721
  frame = ".cf-turnstile-wrapper"
1720
1722
  elif driver.is_element_present('[class="cf-turnstile"]'):
@@ -1759,8 +1761,7 @@ def _uc_gui_handle_captcha_(driver, frame="iframe", ctype=None):
1759
1761
  active_element_css = js_utils.get_active_element_css(driver)
1760
1762
  if (
1761
1763
  active_element_css.startswith(selector)
1762
- or active_element_css.endswith(" > div" * 2)
1763
- or (special_form and active_element_css.endswith(" div"))
1764
+ or active_element_css.endswith(" div")
1764
1765
  or (ctype == "g_rc" and "frame[name" in active_element_css)
1765
1766
  ):
1766
1767
  found_checkbox = True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seleniumbase
3
- Version: 4.40.4
3
+ Version: 4.40.6
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
@@ -67,7 +67,7 @@ Requires-Dist: setuptools~=70.2; python_version < "3.10"
67
67
  Requires-Dist: setuptools>=80.9.0; python_version >= "3.10"
68
68
  Requires-Dist: wheel>=0.45.1
69
69
  Requires-Dist: attrs>=25.3.0
70
- Requires-Dist: certifi>=2025.7.9
70
+ Requires-Dist: certifi>=2025.7.14
71
71
  Requires-Dist: exceptiongroup>=1.3.0
72
72
  Requires-Dist: websockets~=13.1; python_version < "3.9"
73
73
  Requires-Dist: websockets>=15.0.1; python_version >= "3.9"
@@ -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=kG0cVbfT9GG7Fib3iTTZqU9DHH-VIRxofQ3L9s5NWsg,46
6
+ seleniumbase/__version__.py,sha256=AeP5s-NyoU-cPDABamaogBKMVz6GeuDdTW1X0xvpy3c,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
@@ -25,7 +25,7 @@ seleniumbase/console_scripts/run.py,sha256=scHfo8Zf6F7ABAGBiKHF-Vv7MOrB6qU75RRiy
25
25
  seleniumbase/console_scripts/sb_behave_gui.py,sha256=CX5dTIIptsaR1xLVy53DM6haV_mIc3kYALUkkhAkfRI,14888
26
26
  seleniumbase/console_scripts/sb_caseplans.py,sha256=C_vhATSa9dEDOSmHT9uk64ebkXcqM5uu8Y1S3LjATkc,17875
27
27
  seleniumbase/console_scripts/sb_commander.py,sha256=Ejal4WhnMSTLcykCT04jmMuH_fvDrfIAoxoJ23LclAM,13084
28
- seleniumbase/console_scripts/sb_install.py,sha256=4XDdUsLk9wRkouvU3eMR9r80mU6gkOJevveR0yS9kqw,56401
28
+ seleniumbase/console_scripts/sb_install.py,sha256=LosIv69jk2k6bNdcB1ozUjV0vZ4lWyUBr8xM2UpSz5g,56401
29
29
  seleniumbase/console_scripts/sb_mkchart.py,sha256=ep9g-9CSIwaOJKVxhB3xjRQpfsuApyN8-Dr129cNXwQ,10941
30
30
  seleniumbase/console_scripts/sb_mkdir.py,sha256=iFN6ZMOgmH_GAvEuvzYltWuYiS3PRFQcL5fJIj1yX_Y,30897
31
31
  seleniumbase/console_scripts/sb_mkfile.py,sha256=OWYd4yFccmjrd-gNn1t1una-HDRU2_N2-r4Tg3nHsj0,17744
@@ -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=0NUGq4IdmS3L0vW7PW3RZZpiPr4468g5umtTGSZgLho,247484
39
+ seleniumbase/core/browser_launcher.py,sha256=_dqvdFUNUNCebvPewUz1lPRiUJ9V9cVSxo_FqQ03Z5k,247499
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.40.4.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
141
- seleniumbase-4.40.4.dist-info/METADATA,sha256=oxrIbIGflvSlq41Nx_nk_wK-fLzSPhVPVz-_BPYAf5E,87294
142
- seleniumbase-4.40.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
- seleniumbase-4.40.4.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
- seleniumbase-4.40.4.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
- seleniumbase-4.40.4.dist-info/RECORD,,
140
+ seleniumbase-4.40.6.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
141
+ seleniumbase-4.40.6.dist-info/METADATA,sha256=oWNEaNhJrvxH9TaBSqmNqijMcVat_lz3K19gC61vIbg,87295
142
+ seleniumbase-4.40.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
+ seleniumbase-4.40.6.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
+ seleniumbase-4.40.6.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
+ seleniumbase-4.40.6.dist-info/RECORD,,