seleniumbase 4.30.4a3__py3-none-any.whl → 4.30.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.30.4a3"
2
+ __version__ = "4.30.6"
@@ -42,6 +42,7 @@ behave -D agent="User Agent String" -D demo
42
42
  -D binary-location=PATH (Set path of the Chromium browser binary to use.)
43
43
  -D driver-version=VER (Set the chromedriver or uc_driver version to use.)
44
44
  -D sjw (Skip JS Waits for readyState to be "complete" or Angular to load.)
45
+ -D wfa (Wait for AngularJS to be done loading after specific web actions.)
45
46
  -D pls=PLS (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
46
47
  -D headless (Run tests in headless mode. The default arg on Linux OS.)
47
48
  -D headless2 (Use the new headless mode, which supports extensions.)
@@ -588,6 +589,10 @@ def get_configured_sb(context):
588
589
  if low_key in ["sjw", "skip-js-waits", "skip_js_waits"]:
589
590
  settings.SKIP_JS_WAITS = True
590
591
  continue
592
+ # Handle: -D wfa / wait-for-angularjs / wait_for_angularjs
593
+ if low_key in ["wfa", "wait-for-angularjs", "wait_for_angularjs"]:
594
+ settings.WAIT_FOR_ANGULARJS = True
595
+ continue
591
596
  # Handle: -D visual-baseline / visual_baseline
592
597
  if low_key in ["visual-baseline", "visual_baseline"]:
593
598
  sb.visual_baseline = True
@@ -889,6 +894,16 @@ def get_configured_sb(context):
889
894
  # If the port is "443", the protocol is "https"
890
895
  if str(sb.port) == "443":
891
896
  sb.protocol = "https"
897
+ if (
898
+ (sb.enable_ws is None and sb.disable_ws is None)
899
+ or (sb.disable_ws is not None and not sb.disable_ws)
900
+ or (sb.enable_ws is not None and sb.enable_ws)
901
+ ):
902
+ sb.enable_ws = True
903
+ sb.disable_ws = False
904
+ else:
905
+ sb.enable_ws = False
906
+ sb.disable_ws = True
892
907
  if sb.window_size:
893
908
  window_size = sb.window_size
894
909
  if window_size.count(",") != 1:
@@ -982,16 +982,22 @@ def _uc_gui_click_captcha(
982
982
  _uc_gui_click_x_y(driver, x, y, timeframe=0.95)
983
983
  except Exception:
984
984
  pass
985
- reconnect_time = (float(constants.UC.RECONNECT_TIME) / 2.0) + 0.5
985
+ reconnect_time = (float(constants.UC.RECONNECT_TIME) / 2.0) + 0.6
986
986
  if IS_LINUX:
987
- reconnect_time = constants.UC.RECONNECT_TIME + 0.25
987
+ reconnect_time = constants.UC.RECONNECT_TIME + 0.2
988
988
  if not x or not y:
989
989
  reconnect_time = 1 # Make it quick (it already failed)
990
990
  driver.reconnect(reconnect_time)
991
- if blind or (IS_LINUX and "Just a moment" in driver.title):
992
- retry = True
991
+ caught = False
992
+ if (
993
+ driver.is_element_present(".footer .clearfix .ray-id")
994
+ and not driver.is_element_present("#challenge-success-text")
995
+ ):
993
996
  blind = True
994
- if retry and x and y and _on_a_captcha_page(driver):
997
+ caught = True
998
+ if blind:
999
+ retry = True
1000
+ if retry and x and y and (caught or _on_a_captcha_page(driver)):
995
1001
  with gui_lock: # Prevent issues with multiple processes
996
1002
  # Make sure the window is on top
997
1003
  page_actions.switch_to_window(
@@ -1056,11 +1062,7 @@ def uc_gui_click_cf(driver, frame="iframe", retry=False, blind=False):
1056
1062
  )
1057
1063
 
1058
1064
 
1059
- def _uc_gui_handle_captcha(
1060
- driver,
1061
- frame="iframe",
1062
- ctype=None,
1063
- ):
1065
+ def _uc_gui_handle_captcha_(driver, frame="iframe", ctype=None):
1064
1066
  if ctype == "cf_t":
1065
1067
  if not _on_a_cf_turnstile_page(driver):
1066
1068
  return
@@ -1202,12 +1204,22 @@ def _uc_gui_handle_captcha(
1202
1204
  pyautogui.press(" ")
1203
1205
  except Exception:
1204
1206
  pass
1205
- reconnect_time = (float(constants.UC.RECONNECT_TIME) / 2.0) + 0.5
1207
+ reconnect_time = (float(constants.UC.RECONNECT_TIME) / 2.0) + 0.6
1206
1208
  if IS_LINUX:
1207
- reconnect_time = constants.UC.RECONNECT_TIME + 0.15
1209
+ reconnect_time = constants.UC.RECONNECT_TIME + 0.2
1208
1210
  driver.reconnect(reconnect_time)
1209
1211
 
1210
1212
 
1213
+ def _uc_gui_handle_captcha(driver, frame="iframe", ctype=None):
1214
+ _uc_gui_handle_captcha_(driver, frame=frame, ctype=ctype)
1215
+ if (
1216
+ driver.is_element_present(".footer .clearfix .ray-id")
1217
+ and not driver.is_element_present("#challenge-success-text")
1218
+ ):
1219
+ driver.uc_open_with_reconnect(driver.current_url, 3.8)
1220
+ _uc_gui_handle_captcha_(driver, frame=frame, ctype=ctype)
1221
+
1222
+
1211
1223
  def uc_gui_handle_captcha(driver, frame="iframe"):
1212
1224
  _uc_gui_handle_captcha(driver, frame=frame, ctype=None)
1213
1225
 
@@ -16071,7 +16071,10 @@ class BaseCase(unittest.TestCase):
16071
16071
  try:
16072
16072
  self.driver.window_handles
16073
16073
  except Exception:
16074
- self.driver.connect()
16074
+ try:
16075
+ self.driver.connect()
16076
+ except Exception:
16077
+ pass
16075
16078
  self.__slow_mode_pause_if_active()
16076
16079
  has_exception = self.__has_exception()
16077
16080
  sb_config._has_exception = has_exception
@@ -38,7 +38,7 @@ def wait_for_ready_state_complete(driver, timeout=settings.LARGE_TIMEOUT):
38
38
  time.sleep(0.03)
39
39
  return True
40
40
  if ready_state == "complete":
41
- time.sleep(0.01) # Better be sure everything is done loading
41
+ time.sleep(0.002)
42
42
  return True
43
43
  else:
44
44
  now_ms = time.time() * 1000.0
@@ -48,7 +48,7 @@ def wait_for_ready_state_complete(driver, timeout=settings.LARGE_TIMEOUT):
48
48
  return False # readyState stayed "interactive" (Not "complete")
49
49
 
50
50
 
51
- def execute_async_script(driver, script, timeout=settings.EXTREME_TIMEOUT):
51
+ def execute_async_script(driver, script, timeout=settings.LARGE_TIMEOUT):
52
52
  driver.set_script_timeout(timeout)
53
53
  return driver.execute_async_script(script)
54
54
 
@@ -56,11 +56,19 @@ def execute_async_script(driver, script, timeout=settings.EXTREME_TIMEOUT):
56
56
  def wait_for_angularjs(driver, timeout=settings.LARGE_TIMEOUT, **kwargs):
57
57
  if hasattr(settings, "SKIP_JS_WAITS") and settings.SKIP_JS_WAITS:
58
58
  return
59
- if not settings.WAIT_FOR_ANGULARJS:
59
+ try:
60
+ # This closes pop-up alerts
61
+ driver.execute_script("")
62
+ except Exception:
63
+ pass
64
+ if (
65
+ (hasattr(driver, "_is_using_uc") and driver._is_using_uc)
66
+ or not settings.WAIT_FOR_ANGULARJS
67
+ ):
68
+ wait_for_ready_state_complete(driver)
60
69
  return
61
70
  if timeout == settings.MINI_TIMEOUT:
62
- timeout = settings.MINI_TIMEOUT / 2.0
63
-
71
+ timeout = settings.MINI_TIMEOUT / 6.0
64
72
  NG_WRAPPER = (
65
73
  "%(prefix)s"
66
74
  "var $elm=document.querySelector("
@@ -84,15 +92,10 @@ def wait_for_angularjs(driver, timeout=settings.LARGE_TIMEOUT, **kwargs):
84
92
  "handler": handler,
85
93
  "suffix": suffix,
86
94
  }
87
- try:
88
- # This closes any pop-up alerts (otherwise the next part fails)
89
- driver.execute_script("")
90
- except Exception:
91
- pass
92
95
  try:
93
96
  execute_async_script(driver, script, timeout=timeout)
94
97
  except Exception:
95
- time.sleep(0.05)
98
+ pass
96
99
 
97
100
 
98
101
  def convert_to_css_selector(selector, by=By.CSS_SELECTOR):
@@ -59,6 +59,7 @@ def pytest_addoption(parser):
59
59
  --binary-location=PATH (Set path of the Chromium browser binary to use.)
60
60
  --driver-version=VER (Set the chromedriver or uc_driver version to use.)
61
61
  --sjw (Skip JS Waits for readyState to be "complete" or Angular to load.)
62
+ --wfa (Wait for AngularJS to be done loading after specific web actions.)
62
63
  --pls=PLS (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
63
64
  --headless (Run tests in headless mode. The default arg on Linux OS.)
64
65
  --headless2 (Use the new headless mode, which supports extensions.)
@@ -358,6 +359,17 @@ def pytest_addoption(parser):
358
359
  and wait_for_angularjs(), which are part of many
359
360
  SeleniumBase methods for improving reliability.""",
360
361
  )
362
+ parser.addoption(
363
+ "--wfa",
364
+ "--wait_for_angularjs",
365
+ "--wait-for-angularjs",
366
+ action="store_true",
367
+ dest="wait_for_angularjs",
368
+ default=False,
369
+ help="""Add waiting for AngularJS. (The default setting
370
+ was changed to no longer wait for AngularJS to
371
+ finish loading as an extra JavaScript call.)""",
372
+ )
361
373
  parser.addoption(
362
374
  "--with-db_reporting",
363
375
  "--with-db-reporting",
@@ -1546,6 +1558,8 @@ def pytest_configure(config):
1546
1558
  settings.ARCHIVE_EXISTING_DOWNLOADS = True
1547
1559
  if config.getoption("skip_js_waits"):
1548
1560
  settings.SKIP_JS_WAITS = True
1561
+ if config.getoption("wait_for_angularjs"):
1562
+ settings.WAIT_FOR_ANGULARJS = True
1549
1563
  sb_config.all_scripts = config.getoption("all_scripts")
1550
1564
  sb_config._time_limit = config.getoption("time_limit")
1551
1565
  sb_config.time_limit = config.getoption("time_limit")
@@ -76,6 +76,7 @@ def SB(
76
76
  binary_location=None, # Set path of the Chromium browser binary to use.
77
77
  driver_version=None, # Set the chromedriver or uc_driver version to use.
78
78
  skip_js_waits=None, # Skip JS Waits (readyState=="complete" and Angular).
79
+ wait_for_angularjs=None, # Wait for AngularJS to load after some actions.
79
80
  use_wire=None, # Use selenium-wire's webdriver over selenium webdriver.
80
81
  external_pdf=None, # Set Chrome "plugins.always_open_pdf_externally":True.
81
82
  is_mobile=None, # Use the mobile device emulator while running tests.
@@ -109,6 +110,7 @@ def SB(
109
110
  wire=None, # Shortcut / Duplicate of "use_wire".
110
111
  pls=None, # Shortcut / Duplicate of "page_load_strategy".
111
112
  sjw=None, # Shortcut / Duplicate of "skip_js_waits".
113
+ wfa=None, # Shortcut / Duplicate of "wait_for_angularjs".
112
114
  save_screenshot=None, # Save a screenshot at the end of each test.
113
115
  no_screenshot=None, # No screenshots saved unless tests directly ask it.
114
116
  page_load_strategy=None, # Set Chrome PLS to "normal", "eager", or "none".
@@ -607,6 +609,17 @@ def SB(
607
609
  settings.SKIP_JS_WAITS = True
608
610
  elif skip_js_waits:
609
611
  settings.SKIP_JS_WAITS = skip_js_waits
612
+ if wfa is not None and wait_for_angularjs is None:
613
+ wait_for_angularjs = wfa
614
+ if wait_for_angularjs is None:
615
+ if (
616
+ "--wfa" in sys_argv
617
+ or "--wait_for_angularjs" in sys_argv
618
+ or "--wait-for-angularjs" in sys_argv
619
+ ):
620
+ settings.WAIT_FOR_ANGULARJS = True
621
+ elif wait_for_angularjs:
622
+ settings.WAIT_FOR_ANGULARJS = wait_for_angularjs
610
623
  if save_screenshot is None:
611
624
  if (
612
625
  "--screenshot" in sys_argv
@@ -40,6 +40,7 @@ class SeleniumBrowser(Plugin):
40
40
  --binary-location=PATH (Set path of the Chromium browser binary to use.)
41
41
  --driver-version=VER (Set the chromedriver or uc_driver version to use.)
42
42
  --sjw (Skip JS Waits for readyState to be "complete" or Angular to load.)
43
+ --wfa (Wait for AngularJS to be done loading after specific web actions.)
43
44
  --pls=PLS (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
44
45
  --headless (Run tests in headless mode. The default arg on Linux OS.)
45
46
  --headless2 (Use the new headless mode, which supports extensions.)
@@ -178,6 +179,17 @@ class SeleniumBrowser(Plugin):
178
179
  and wait_for_angularjs(), which are part of many
179
180
  SeleniumBase methods for improving reliability.""",
180
181
  )
182
+ parser.addoption(
183
+ "--wfa",
184
+ "--wait_for_angularjs",
185
+ "--wait-for-angularjs",
186
+ action="store_true",
187
+ dest="wait_for_angularjs",
188
+ default=False,
189
+ help="""Add waiting for AngularJS. (The default setting
190
+ was changed to no longer wait for AngularJS to
191
+ finish loading as an extra JavaScript call.)""",
192
+ )
181
193
  parser.addoption(
182
194
  "--protocol",
183
195
  action="store",
@@ -1105,6 +1117,8 @@ class SeleniumBrowser(Plugin):
1105
1117
  test.test.start_page = self.options.start_page
1106
1118
  if self.options.skip_js_waits:
1107
1119
  settings.SKIP_JS_WAITS = True
1120
+ if self.options.wait_for_angularjs:
1121
+ settings.WAIT_FOR_ANGULARJS = True
1108
1122
  test.test.protocol = self.options.protocol
1109
1123
  test.test.servername = self.options.servername
1110
1124
  test.test.port = self.options.port
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: seleniumbase
3
- Version: 4.30.4a3
3
+ Version: 4.30.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
@@ -93,7 +93,7 @@ Requires-Dist: mdurl ==0.1.2
93
93
  Requires-Dist: rich ==13.8.1
94
94
  Requires-Dist: python-xlib ==0.33 ; platform_system == "Linux"
95
95
  Requires-Dist: pyreadline3 ==3.4.1 ; platform_system == "Windows"
96
- Requires-Dist: urllib3 <2,>=1.26.19 ; python_version < "3.10"
96
+ Requires-Dist: urllib3 <2,>=1.26.20 ; python_version < "3.10"
97
97
  Requires-Dist: pip >=24.0 ; python_version < "3.8"
98
98
  Requires-Dist: packaging >=24.0 ; python_version < "3.8"
99
99
  Requires-Dist: setuptools >=68.0.0 ; python_version < "3.8"
@@ -113,7 +113,7 @@ Requires-Dist: soupsieve ==2.4.1 ; python_version < "3.8"
113
113
  Requires-Dist: pygments ==2.17.2 ; python_version < "3.8"
114
114
  Requires-Dist: markdown-it-py ==2.2.0 ; python_version < "3.8"
115
115
  Requires-Dist: setuptools >=70.2.0 ; python_version >= "3.10"
116
- Requires-Dist: urllib3 <2.3.0,>=1.26.19 ; python_version >= "3.10"
116
+ Requires-Dist: urllib3 <2.3.0,>=1.26.20 ; python_version >= "3.10"
117
117
  Requires-Dist: pip >=24.1.2 ; python_version >= "3.8"
118
118
  Requires-Dist: packaging >=24.1 ; python_version >= "3.8"
119
119
  Requires-Dist: wheel >=0.44.0 ; python_version >= "3.8"
@@ -836,6 +836,7 @@ pytest test_coffee_cart.py --trace
836
836
  --binary-location=PATH # (Set path of the Chromium browser binary to use.)
837
837
  --driver-version=VER # (Set the chromedriver or uc_driver version to use.)
838
838
  --sjw # (Skip JS Waits for readyState to be "complete" or Angular to load.)
839
+ --wfa # (Wait for AngularJS to be done loading after specific web actions.)
839
840
  --pls=PLS # (Set pageLoadStrategy on Chrome: "normal", "eager", or "none".)
840
841
  --headless # (Run tests in headless mode. The default arg on Linux OS.)
841
842
  --headless2 # (Use the new headless mode, which supports extensions.)
@@ -5,10 +5,10 @@ sbase/steps.py,sha256=bKT_u5bJkKzYWEuAXi9NVVRYYxQRCM1_YJUrNFFRVPY,42865
5
5
  seleniumbase/ReadMe.md,sha256=4nEdto4d0Ch0Zneg0yAC-RBBdqRqPUP0SCo-ze_XDPM,3612
6
6
  seleniumbase/__init__.py,sha256=dgq30q6wGO2fJOVYemxC5hLxzv-of-MRn5P1YarBq5k,2263
7
7
  seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
8
- seleniumbase/__version__.py,sha256=4UlN31N9MNNCHsuvUgvXKIiNz0oRHmB6lULGDxZXqak,48
8
+ seleniumbase/__version__.py,sha256=G42Ny66A3-hCWSMGAJv3QuEOEDn-oskQmnf1QcL_7x8,46
9
9
  seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  seleniumbase/behave/behave_helper.py,sha256=elkl8P9eLulRAioLstE9baYNM9N_PHBmAOcajX-pH_Y,24198
11
- seleniumbase/behave/behave_sb.py,sha256=q4uYZixZBf7VYWnQnEk2weTcyMy1X1faR3vyYvUzDiA,56406
11
+ seleniumbase/behave/behave_sb.py,sha256=Yd4CRZegyl5esBoJN-DLygPt0AecwyRlDZtX7mmh9vs,57007
12
12
  seleniumbase/behave/steps.py,sha256=8-N-NB2tnDsxaP4LSg-uSBgbwZYMS6ZEL1oggO1PCoU,390
13
13
  seleniumbase/common/ReadMe.md,sha256=ib-L8nio7fDREqM3MMOpBHtYQa8dy_LlSsHV9XUUQ4Q,3296
14
14
  seleniumbase/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -40,7 +40,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=yo641b_OdSE0GUauOyxk-QrNeIjYzbRY
40
40
  seleniumbase/console_scripts/sb_recorder.py,sha256=9rLgxq_K2g37zpEPYtQ8j01u2fGkZpacw3Xi6o_ENWc,11162
41
41
  seleniumbase/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
42
  seleniumbase/core/application_manager.py,sha256=e_0sjtI8cjY5BNyZj1QBR0j6_oCScxGmSXYEpcYwuZE,576
43
- seleniumbase/core/browser_launcher.py,sha256=Zedn0iMweXHJye0FvH7ZSyKw8u2qVOL4t3ag1l-gvOc,199057
43
+ seleniumbase/core/browser_launcher.py,sha256=qwQnJ-0znUwIrlQqCJJO3uGQ-DWuFJmgnnvw_vU2Zhs,199597
44
44
  seleniumbase/core/capabilities_parser.py,sha256=meIS2uHapTCq2ldfNAToC7r0cKmZDRXuYNKExM1GHDY,6038
45
45
  seleniumbase/core/colored_traceback.py,sha256=DrRWfg7XEnKcgY59Xj7Jdk09H-XqHYBSUpB-DiZt6iY,2020
46
46
  seleniumbase/core/create_db_tables.sql,sha256=VWPtrdiW_HQ6yETHjqTu-VIrTwvd8I8o1NfBeaVSHpU,972
@@ -70,11 +70,11 @@ seleniumbase/extensions/disable_csp.zip,sha256=YMifIIgEBiLrEFrS1sfW4Exh4br1V4oK1
70
70
  seleniumbase/extensions/recorder.zip,sha256=OOyzF-Ize2cSRu1CqhzSAq5vusI9hqLLd2OIApUHesI,11918
71
71
  seleniumbase/extensions/sbase_ext.zip,sha256=3s1N8zrVaMz8RQEOIoBzC3KDjtmHwVZRvVsX25Odr_s,8175
72
72
  seleniumbase/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
- seleniumbase/fixtures/base_case.py,sha256=y-GeD6E8SM-mY_fc3QDbxbZFX-K7CBDVssDYBr4wYzY,702107
73
+ seleniumbase/fixtures/base_case.py,sha256=m7B1S5K7BhDyNfs9nRhrdvHbWLG8mEg83E7GCAvu4AA,702191
74
74
  seleniumbase/fixtures/constants.py,sha256=TapuGLdERtvZPGMblVXkNGybr8tj8FMtN3sbJ3ygyoc,13569
75
75
  seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
76
76
  seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
77
- seleniumbase/fixtures/js_utils.py,sha256=y1FgWvrg7CjryqGnFhbmFIIVYMzQfYZhwppYae87UCo,51158
77
+ seleniumbase/fixtures/js_utils.py,sha256=NAUxF4-pDyp8NFlPajLmDlFhEPK5NYTpDM6crAe7_hA,51194
78
78
  seleniumbase/fixtures/page_actions.py,sha256=_LBmIqKBdRlgrKnl6aKUcHbns1GC18_YNvuRniRv1V8,63066
79
79
  seleniumbase/fixtures/page_utils.py,sha256=VJmhImXorrrXqokFvbDMGBWODLa9bHiaviHAO0r_0W0,12907
80
80
  seleniumbase/fixtures/shared_utils.py,sha256=Fc78v0OxfLPOPqeT8ExsdkTgXHlmpxvJeLbLyDnu1dI,5748
@@ -94,11 +94,11 @@ seleniumbase/plugins/basic_test_info.py,sha256=8ov6n417gPbqqvrlT4zrch7l2XcRt-GF2
94
94
  seleniumbase/plugins/db_reporting_plugin.py,sha256=En09qUCoojrk9-vbcnsoHdSELoGmag2GDIyu3jTiJas,7331
95
95
  seleniumbase/plugins/driver_manager.py,sha256=dBwltG0AMj3uMFq6s40MWKaGyaLyh-f38rqoWVBcRQE,24491
96
96
  seleniumbase/plugins/page_source.py,sha256=loTnXxOj4kxEukuTZEiGyvKBhY3KDVDMnNlHHheTBDE,1889
97
- seleniumbase/plugins/pytest_plugin.py,sha256=ObITovmkwpAcwXNxF6qTHRzERPA7_ntAmbxPRTefj1M,94999
97
+ seleniumbase/plugins/pytest_plugin.py,sha256=Z7ZcGihVgDNDcM9uRisgF16zV90OfrBFJgmmC_58uuw,95556
98
98
  seleniumbase/plugins/s3_logging_plugin.py,sha256=WDfertQgGOW_SRJpFMaekYD6vBVW9VO62POtXXy2HCM,2319
99
- seleniumbase/plugins/sb_manager.py,sha256=j-yOiwyeDYbXrgRUiW92zMx0qHYqisF1bUCglG0MXvA,42414
99
+ seleniumbase/plugins/sb_manager.py,sha256=1YbkK0FGf_A5_pDnCMYJSYZwLNihkOk9bkQHRmWI_MU,42968
100
100
  seleniumbase/plugins/screen_shots.py,sha256=1hrXw-hzuZ1BR6Yh7AyWX2ABnvnP73-RCbwdz958gj4,1127
101
- seleniumbase/plugins/selenium_plugin.py,sha256=FESjalW8mdboLB_B59j8EeY6IvmEIbp_BY9cPTxJsM4,55122
101
+ seleniumbase/plugins/selenium_plugin.py,sha256=FwEGt10XuG3aqpApYogiiAcqNn3e4hYOWqKsuimsTg4,55724
102
102
  seleniumbase/resources/ReadMe.md,sha256=uminnO5_Uv-UZDKcc9a9s9kxisaYUps-H98Fp5PJcaU,2124
103
103
  seleniumbase/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
104
  seleniumbase/resources/favicon.ico,sha256=QPf_YK0QXa_--C4_CH-odh6OTHRQ9k-4O6WcCpXSdwM,1150
@@ -137,9 +137,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443
137
137
  seleniumbase/utilities/selenium_ide/ReadMe.md,sha256=hznGeuMpkIimqMiZBW-4goIy2ltW4l8X9kb0YSPUQfE,4483
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.30.4a3.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
141
- seleniumbase-4.30.4a3.dist-info/METADATA,sha256=asxv0HWpgiBxL-ejMrFjVqSCTPaYLoK25JTutgiJ8AA,86684
142
- seleniumbase-4.30.4a3.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
143
- seleniumbase-4.30.4a3.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
- seleniumbase-4.30.4a3.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
- seleniumbase-4.30.4a3.dist-info/RECORD,,
140
+ seleniumbase-4.30.6.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
141
+ seleniumbase-4.30.6.dist-info/METADATA,sha256=-P5uAhsHHj-5qe804ZFbBq_DREVHrHb3_hGC_jvHYCE,86759
142
+ seleniumbase-4.30.6.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
143
+ seleniumbase-4.30.6.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
+ seleniumbase-4.30.6.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
+ seleniumbase-4.30.6.dist-info/RECORD,,