seleniumbase 4.20.5__py3-none-any.whl → 4.20.7__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.20.5"
2
+ __version__ = "4.20.7"
@@ -23,9 +23,9 @@ you can try finding one from one of following sites:
23
23
  """
24
24
 
25
25
  PROXY_LIST = {
26
- "example1": "138.199.48.1:8443", # (Example) - set your own proxy here
27
- "example2": "socks4://167.71.100.140:55229", # (Example)
28
- "example3": "socks5://167.172.159.43:49633", # (Example)
26
+ "example1": "37.19.220.129:8443", # (Example) - set your own proxy here
27
+ "example2": "socks4://104.236.32.53:8915", # (Example)
28
+ "example3": "socks5://142.44.212.57:30439", # (Example)
29
29
  "proxy1": None,
30
30
  "proxy2": None,
31
31
  "proxy3": None,
@@ -10,6 +10,7 @@ import types
10
10
  import urllib3
11
11
  import warnings
12
12
  from selenium import webdriver
13
+ from selenium.common.exceptions import ElementClickInterceptedException
13
14
  from selenium.webdriver.chrome.service import Service as ChromeService
14
15
  from selenium.webdriver.common.options import ArgOptions
15
16
  from selenium.webdriver.common.service import utils as service_utils
@@ -429,7 +430,10 @@ def uc_click(
429
430
  driver, selector, by="css selector", timeout=settings.SMALL_TIMEOUT
430
431
  ):
431
432
  element = driver.wait_for_element(selector, by=by, timeout=timeout)
432
- element.uc_click()
433
+ try:
434
+ element.uc_click()
435
+ except ElementClickInterceptedException:
436
+ driver.js_click(selector, by=by, timeout=timeout)
433
437
 
434
438
 
435
439
  def edgedriver_on_path():
@@ -1030,14 +1034,16 @@ def _set_chrome_options(
1030
1034
  if headless or headless2 or is_using_uc(undetectable, browser_name):
1031
1035
  chrome_options.add_argument("--disable-renderer-backgrounding")
1032
1036
  chrome_options.add_argument("--disable-backgrounding-occluded-windows")
1037
+ chrome_options.add_argument("--ash-no-nudges")
1038
+ chrome_options.add_argument("--deny-permission-prompts")
1033
1039
  if user_data_dir:
1034
1040
  chrome_options.add_argument(
1035
- "--disable-features=OptimizationHintsFetching,"
1041
+ "--disable-features=OptimizationHintsFetching,Translate,"
1036
1042
  "OptimizationTargetPrediction,PrivacySandboxSettings4"
1037
1043
  )
1038
1044
  else:
1039
1045
  chrome_options.add_argument(
1040
- "--disable-features=OptimizationHintsFetching,"
1046
+ "--disable-features=OptimizationHintsFetching,Translate,"
1041
1047
  "OptimizationTargetPrediction"
1042
1048
  )
1043
1049
  if (
@@ -2464,14 +2470,16 @@ def get_local_driver(
2464
2470
  edge_options.add_argument(
2465
2471
  "--disable-autofill-keyboard-accessory-view[8]"
2466
2472
  )
2473
+ edge_options.add_argument("--ash-no-nudges")
2474
+ edge_options.add_argument("--deny-permission-prompts")
2467
2475
  if user_data_dir:
2468
2476
  edge_options.add_argument(
2469
- "--disable-features=OptimizationHintsFetching,"
2477
+ "--disable-features=OptimizationHintsFetching,Translate,"
2470
2478
  "OptimizationTargetPrediction,PrivacySandboxSettings4"
2471
2479
  )
2472
2480
  else:
2473
2481
  edge_options.add_argument(
2474
- "--disable-features=OptimizationHintsFetching,"
2482
+ "--disable-features=OptimizationHintsFetching,Translate,"
2475
2483
  "OptimizationTargetPrediction"
2476
2484
  )
2477
2485
  edge_options.add_argument("--disable-browser-side-navigation")
@@ -406,7 +406,11 @@ class BaseCase(unittest.TestCase):
406
406
  self.__demo_mode_highlight_if_active(original_selector, original_by)
407
407
  if scroll and not self.demo_mode and not self.slow_mode:
408
408
  self.__scroll_to_element(element, selector, by)
409
- pre_action_url = self.driver.current_url
409
+ pre_action_url = None
410
+ try:
411
+ pre_action_url = self.driver.current_url
412
+ except Exception:
413
+ pass
410
414
  pre_window_count = len(self.driver.window_handles)
411
415
  try:
412
416
  if (
@@ -707,7 +711,11 @@ class BaseCase(unittest.TestCase):
707
711
  timeout=timeout,
708
712
  original_selector=original_selector,
709
713
  )
710
- pre_action_url = self.driver.current_url
714
+ pre_action_url = None
715
+ try:
716
+ pre_action_url = self.driver.current_url
717
+ except Exception:
718
+ pass
711
719
  try:
712
720
  if self.browser == "safari":
713
721
  # Jump to the "except" block where the other script should work
@@ -788,7 +796,11 @@ class BaseCase(unittest.TestCase):
788
796
  timeout=timeout,
789
797
  original_selector=original_selector,
790
798
  )
791
- pre_action_url = self.driver.current_url
799
+ pre_action_url = None
800
+ try:
801
+ pre_action_url = self.driver.current_url
802
+ except Exception:
803
+ pass
792
804
  try:
793
805
  if self.browser == "safari":
794
806
  # Jump to the "except" block where the other script should work
@@ -913,7 +925,12 @@ class BaseCase(unittest.TestCase):
913
925
  except Exception:
914
926
  pass # Clearing the text field first might not be necessary
915
927
  self.__demo_mode_pause_if_active(tiny=True)
916
- pre_action_url = self.driver.current_url
928
+ pre_action_url = None
929
+ if self.demo_mode:
930
+ try:
931
+ pre_action_url = self.driver.current_url
932
+ except Exception:
933
+ pass
917
934
  text = self.__get_type_checked_text(text)
918
935
  try:
919
936
  if not text.endswith("\n"):
@@ -1011,7 +1028,12 @@ class BaseCase(unittest.TestCase):
1011
1028
  self.__demo_mode_highlight_if_active(selector, by)
1012
1029
  if not self.demo_mode and not self.slow_mode:
1013
1030
  self.__scroll_to_element(element, selector, by)
1014
- pre_action_url = self.driver.current_url
1031
+ pre_action_url = None
1032
+ if self.demo_mode:
1033
+ try:
1034
+ pre_action_url = self.driver.current_url
1035
+ except Exception:
1036
+ pass
1015
1037
  text = self.__get_type_checked_text(text)
1016
1038
  try:
1017
1039
  if not text.endswith("\n"):
@@ -1266,11 +1288,18 @@ class BaseCase(unittest.TestCase):
1266
1288
  self.__check_scope()
1267
1289
  if hasattr(self, "recorder_mode") and self.recorder_mode:
1268
1290
  self.save_recorded_actions()
1269
- pre_action_url = self.driver.current_url
1291
+ pre_action_url = None
1292
+ try:
1293
+ pre_action_url = self.driver.current_url
1294
+ except Exception:
1295
+ pass
1270
1296
  self.__last_page_load_url = None
1271
1297
  self.driver.back()
1272
- if pre_action_url == self.driver.current_url:
1273
- self.driver.back() # Again because the page was redirected
1298
+ try:
1299
+ if pre_action_url == self.driver.current_url:
1300
+ self.driver.back() # Again because the page was redirected
1301
+ except Exception:
1302
+ pass
1274
1303
  if self.recorder_mode:
1275
1304
  time_stamp = self.execute_script("return Date.now();")
1276
1305
  origin = self.get_origin()
@@ -1529,8 +1558,6 @@ class BaseCase(unittest.TestCase):
1529
1558
  timeout = settings.SMALL_TIMEOUT
1530
1559
  if self.timeout_multiplier and timeout == settings.SMALL_TIMEOUT:
1531
1560
  timeout = self.__get_new_timeout(timeout)
1532
- pre_action_url = self.driver.current_url
1533
- pre_window_count = len(self.driver.window_handles)
1534
1561
  link_text = self.__get_type_checked_text(link_text)
1535
1562
  if self.browser == "safari":
1536
1563
  if self.demo_mode:
@@ -1558,7 +1585,12 @@ class BaseCase(unittest.TestCase):
1558
1585
  return
1559
1586
  if not self.is_link_text_present(link_text):
1560
1587
  self.wait_for_link_text_present(link_text, timeout=timeout)
1561
- pre_action_url = self.driver.current_url
1588
+ pre_action_url = None
1589
+ try:
1590
+ pre_action_url = self.driver.current_url
1591
+ except Exception:
1592
+ pass
1593
+ pre_window_count = len(self.driver.window_handles)
1562
1594
  try:
1563
1595
  element = self.wait_for_link_text_visible(link_text, timeout=0.2)
1564
1596
  self.__demo_mode_highlight_if_active(link_text, by="link text")
@@ -1654,7 +1686,11 @@ class BaseCase(unittest.TestCase):
1654
1686
  self.wait_for_partial_link_text_present(
1655
1687
  partial_link_text, timeout=timeout
1656
1688
  )
1657
- pre_action_url = self.driver.current_url
1689
+ pre_action_url = None
1690
+ try:
1691
+ pre_action_url = self.driver.current_url
1692
+ except Exception:
1693
+ pass
1658
1694
  pre_window_count = len(self.driver.window_handles)
1659
1695
  try:
1660
1696
  element = self.wait_for_partial_link_text(
@@ -2125,7 +2161,11 @@ class BaseCase(unittest.TestCase):
2125
2161
  except Exception:
2126
2162
  pass
2127
2163
  elements = self.find_elements(selector, by=by)
2128
- pre_action_url = self.driver.current_url
2164
+ pre_action_url = None
2165
+ try:
2166
+ pre_action_url = self.driver.current_url
2167
+ except Exception:
2168
+ pass
2129
2169
  pre_window_count = len(self.driver.window_handles)
2130
2170
  click_count = 0
2131
2171
  for element in elements:
@@ -2207,7 +2247,11 @@ class BaseCase(unittest.TestCase):
2207
2247
  if number < 0:
2208
2248
  number = 0
2209
2249
  element = elements[number]
2210
- pre_action_url = self.driver.current_url
2250
+ pre_action_url = None
2251
+ try:
2252
+ pre_action_url = self.driver.current_url
2253
+ except Exception:
2254
+ pass
2211
2255
  pre_window_count = len(self.driver.window_handles)
2212
2256
  try:
2213
2257
  self.__scroll_to_element(element)
@@ -2261,7 +2305,11 @@ class BaseCase(unittest.TestCase):
2261
2305
 
2262
2306
  def click_active_element(self):
2263
2307
  self.wait_for_ready_state_complete()
2264
- pre_action_url = self.driver.current_url
2308
+ pre_action_url = None
2309
+ try:
2310
+ pre_action_url = self.driver.current_url
2311
+ except Exception:
2312
+ pass
2265
2313
  pre_window_count = len(self.driver.window_handles)
2266
2314
  if self.recorder_mode:
2267
2315
  selector = js_utils.get_active_element_css(self.driver)
@@ -2593,7 +2641,11 @@ class BaseCase(unittest.TestCase):
2593
2641
  )
2594
2642
  self.__demo_mode_highlight_if_active(original_selector, original_by)
2595
2643
  self.scroll_to(hover_selector, by=hover_by)
2596
- pre_action_url = self.driver.current_url
2644
+ pre_action_url = None
2645
+ try:
2646
+ pre_action_url = self.driver.current_url
2647
+ except Exception:
2648
+ pass
2597
2649
  pre_window_count = len(self.driver.window_handles)
2598
2650
  if self.recorder_mode and self.__current_url_is_recordable():
2599
2651
  if self.get_session_storage_item("pause_recorder") == "no":
@@ -2719,7 +2771,11 @@ class BaseCase(unittest.TestCase):
2719
2771
  )
2720
2772
  self.__demo_mode_highlight_if_active(original_selector, original_by)
2721
2773
  self.scroll_to(hover_selector, by=hover_by)
2722
- pre_action_url = self.driver.current_url
2774
+ pre_action_url = None
2775
+ try:
2776
+ pre_action_url = self.driver.current_url
2777
+ except Exception:
2778
+ pass
2723
2779
  pre_window_count = len(self.driver.window_handles)
2724
2780
  outdated_driver = False
2725
2781
  element = None
@@ -2906,7 +2962,11 @@ class BaseCase(unittest.TestCase):
2906
2962
  self.__demo_mode_highlight_if_active(
2907
2963
  dropdown_selector, dropdown_by
2908
2964
  )
2909
- pre_action_url = self.driver.current_url
2965
+ pre_action_url = None
2966
+ try:
2967
+ pre_action_url = self.driver.current_url
2968
+ except Exception:
2969
+ pass
2910
2970
  pre_window_count = len(self.driver.window_handles)
2911
2971
  try:
2912
2972
  if option_by == "index":
@@ -5802,7 +5862,11 @@ class BaseCase(unittest.TestCase):
5802
5862
  css_selector = self.__escape_quotes_if_needed(css_selector)
5803
5863
  time_stamp = 0
5804
5864
  action = ["", "", "", time_stamp]
5805
- pre_action_url = self.driver.current_url
5865
+ pre_action_url = None
5866
+ try:
5867
+ pre_action_url = self.driver.current_url
5868
+ except Exception:
5869
+ pass
5806
5870
  pre_window_count = len(self.driver.window_handles)
5807
5871
  if self.recorder_mode and not self.__dont_record_js_click:
5808
5872
  time_stamp = self.execute_script("return Date.now();")
@@ -6684,7 +6748,12 @@ class BaseCase(unittest.TestCase):
6684
6748
  self.__demo_mode_highlight_if_active(selector, by)
6685
6749
  if not self.demo_mode and not self.slow_mode:
6686
6750
  self.__scroll_to_element(element, selector, by)
6687
- pre_action_url = self.driver.current_url
6751
+ pre_action_url = None
6752
+ if self.demo_mode:
6753
+ try:
6754
+ pre_action_url = self.driver.current_url
6755
+ except Exception:
6756
+ pass
6688
6757
  if self.recorder_mode and self.__current_url_is_recordable():
6689
6758
  if self.get_session_storage_item("pause_recorder") == "no":
6690
6759
  time_stamp = self.execute_script("return Date.now();")
@@ -10892,7 +10961,31 @@ class BaseCase(unittest.TestCase):
10892
10961
  html += "%s%s" % (add_line, content2)
10893
10962
  html += '\n<aside class="notes">%s</aside>' % notes
10894
10963
  html += "\n</section>\n"
10895
- self._presentation_slides[name].append(html)
10964
+ if "<mk-0>" not in html and "<mk-1>" not in html:
10965
+ self._presentation_slides[name].append(html)
10966
+ else:
10967
+ # Generate multiple slides with <mark> and </mark>
10968
+ replacements = False
10969
+ for num in range(32):
10970
+ if "<mk-%s>" % num in html and "</mk-%s>" % num in html:
10971
+ replacements = True
10972
+ new_html = html
10973
+ new_html = new_html.replace("<mk-%s>" % num, "<mark>")
10974
+ new_html = new_html.replace("</mk-%s>" % num, "</mark>")
10975
+ for num2 in range(32):
10976
+ if num2 == num:
10977
+ continue
10978
+ if "<mk-%s>" % num2 not in new_html and num2 >= 2:
10979
+ break
10980
+ new_html = new_html.replace("<mk-%s>" % num2, "")
10981
+ new_html = new_html.replace("</mk-%s>" % num2, "")
10982
+ self._presentation_slides[name].append(new_html)
10983
+ else:
10984
+ if num >= 2:
10985
+ break
10986
+ if not replacements:
10987
+ # A <mark> is missing a closing tag. Do one.
10988
+ self._presentation_slides[name].append(html)
10896
10989
 
10897
10990
  def save_presentation(
10898
10991
  self, name=None, filename=None, show_notes=False, interval=0
@@ -360,7 +360,7 @@ class Mobile:
360
360
 
361
361
 
362
362
  class UC:
363
- RECONNECT_TIME = 2.15 # Seconds
363
+ RECONNECT_TIME = 2.27 # Seconds
364
364
 
365
365
 
366
366
  class ValidBrowsers:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: seleniumbase
3
- Version: 4.20.5
3
+ Version: 4.20.7
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
@@ -55,7 +55,7 @@ Classifier: Topic :: Utilities
55
55
  Requires-Python: >=3.7
56
56
  Description-Content-Type: text/markdown
57
57
  License-File: LICENSE
58
- Requires-Dist: pip >=23.3
58
+ Requires-Dist: pip >=23.3.1
59
59
  Requires-Dist: packaging >=23.2
60
60
  Requires-Dist: wheel >=0.41.2
61
61
  Requires-Dist: attrs >=23.1.0
@@ -66,12 +66,12 @@ Requires-Dist: parse-type >=0.6.2
66
66
  Requires-Dist: six ==1.16.0
67
67
  Requires-Dist: idna ==3.4
68
68
  Requires-Dist: chardet ==5.2.0
69
- Requires-Dist: charset-normalizer ==3.3.0
69
+ Requires-Dist: charset-normalizer ==3.3.1
70
70
  Requires-Dist: requests ==2.31.0
71
71
  Requires-Dist: pynose ==1.4.8
72
72
  Requires-Dist: sniffio ==1.3.0
73
73
  Requires-Dist: h11 ==0.14.0
74
- Requires-Dist: outcome ==1.3.0
74
+ Requires-Dist: outcome ==1.3.0.post0
75
75
  Requires-Dist: trio ==0.22.2
76
76
  Requires-Dist: trio-websocket ==0.11.1
77
77
  Requires-Dist: wsproto ==1.2.0
@@ -81,7 +81,7 @@ Requires-Dist: fasteners ==0.19
81
81
  Requires-Dist: execnet ==2.0.2
82
82
  Requires-Dist: iniconfig ==2.0.0
83
83
  Requires-Dist: py ==1.11.0
84
- Requires-Dist: pytest ==7.4.2
84
+ Requires-Dist: pytest ==7.4.3
85
85
  Requires-Dist: pytest-html ==2.0.1
86
86
  Requires-Dist: pytest-metadata ==3.0.0
87
87
  Requires-Dist: pytest-ordering ==0.6
@@ -139,7 +139,7 @@ Requires-Dist: pycparser ==2.21 ; extra == 'pdfminer'
139
139
  Requires-Dist: cffi ==1.15.1 ; (python_version < "3.8") and extra == 'pdfminer'
140
140
  Requires-Dist: cryptography ==39.0.2 ; (python_version < "3.9") and extra == 'pdfminer'
141
141
  Requires-Dist: cffi ==1.16.0 ; (python_version >= "3.8") and extra == 'pdfminer'
142
- Requires-Dist: cryptography ==41.0.4 ; (python_version >= "3.9") and extra == 'pdfminer'
142
+ Requires-Dist: cryptography ==41.0.5 ; (python_version >= "3.9") and extra == 'pdfminer'
143
143
  Provides-Extra: pillow
144
144
  Requires-Dist: Pillow ==9.5.0 ; (python_version < "3.8") and extra == 'pillow'
145
145
  Requires-Dist: Pillow ==10.1.0 ; (python_version >= "3.8") and extra == 'pillow'
@@ -5,7 +5,7 @@ sbase/steps.py,sha256=bKT_u5bJkKzYWEuAXi9NVVRYYxQRCM1_YJUrNFFRVPY,42865
5
5
  seleniumbase/ReadMe.md,sha256=5Bnv8gsyKQGABhLj0S4HXZdtVic98puQlIGYc7YHUm8,3612
6
6
  seleniumbase/__init__.py,sha256=Mw4ShIWUF2Efjx-JuwUQLWF9nIbxcX-vu9AOGBp32ec,2123
7
7
  seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
8
- seleniumbase/__version__.py,sha256=82h8Rg64cib1JBtV9W6CtT2RZF_IjSH2ewoB-DrUJcs,46
8
+ seleniumbase/__version__.py,sha256=LEHJUu30HJaJdcQ1hrAd4VXBnslqWOzTopmfU2lmcH0,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
11
  seleniumbase/behave/behave_sb.py,sha256=wbtJnCsnuZpYONeSYsf3U9u9wq2PYXo1xlGkYapPXQ4,55169
@@ -19,7 +19,7 @@ seleniumbase/common/obfuscate.py,sha256=VrwPbVigPH_Jk6ADCk5_miMoq1VK4M9SKnYScDkk
19
19
  seleniumbase/common/unobfuscate.py,sha256=MgP6MMT9Wam6ECFVIA84WsQczfl_dFiumFu9m3eXFDg,771
20
20
  seleniumbase/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
21
  seleniumbase/config/ad_block_list.py,sha256=qCQvbpONdSXk6q5tMwLuOswGYE1Syd8cy5TMIYFjTME,3380
22
- seleniumbase/config/proxy_list.py,sha256=7N2YUALGAmMWh4oJ7oz5gkipSBVewmz58Pt6YNIVPuw,1134
22
+ seleniumbase/config/proxy_list.py,sha256=EcfwKtlca8qcs_CljM5GtQV-TaxJQOvdHx5mnsUfoHI,1132
23
23
  seleniumbase/config/settings.py,sha256=n07U3PrrTgXgg5S1DIGnRuR6Y7AW11y06lvkflD7ZuE,7708
24
24
  seleniumbase/console_scripts/ReadMe.md,sha256=YVnRDa4tUfUWb1fRxKLrzK1Rw0Idcpi1PeGyxciuZmc,19711
25
25
  seleniumbase/console_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -40,7 +40,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=bFXBFusrKZ0v2OwCVgTiHvDCi17HdJYA
40
40
  seleniumbase/console_scripts/sb_recorder.py,sha256=qcvQa89t-4eadfaKKWbQPpYGcTPMsSBTS_aJjyKUXYY,10816
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=AuDQDwJTOJkudaCmQF_obYun8BpVtIUmsr-ND3GcuMU,152931
43
+ seleniumbase/core/browser_launcher.py,sha256=ewTBSrT1NBbthyTIHPjJoNrysiEQVBTkcLe0zZkeB5s,153387
44
44
  seleniumbase/core/capabilities_parser.py,sha256=lu2W7O1JrU9tLgvhx5gQ_Baqnkf3IjcPDzze0P2Ou-Y,5736
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,8 +70,8 @@ seleniumbase/extensions/disable_csp.zip,sha256=YMifIIgEBiLrEFrS1sfW4Exh4br1V4oK1
70
70
  seleniumbase/extensions/recorder.zip,sha256=OwrA8rmLHBq1jWsehw7rAy_EcwYVQkmtPW_RKjNtmW0,11896
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=3WBn2MftRd7LZESsFk0ARSoX75HqHnvpsi9gfiC8cAA,681161
74
- seleniumbase/fixtures/constants.py,sha256=TdIBl6vOTnfxMzm2rK2msiCXyUoKlimdUw_n95vz-w8,12894
73
+ seleniumbase/fixtures/base_case.py,sha256=p_g7lbbXljuRqoOV7803y3eqiIiU9YdLBOR7hjH4TAI,683939
74
+ seleniumbase/fixtures/constants.py,sha256=RcZ_2DzMysnfLncGMOXOp2SGJ5H_vscd1P5Zy6KCeQY,12894
75
75
  seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
76
76
  seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
77
77
  seleniumbase/fixtures/js_utils.py,sha256=03CGD4ghpFuzAp2E4FceEXO10yMVRtCNs60tEAXE0bk,49906
@@ -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.20.5.dist-info/LICENSE,sha256=9CweYVs2pqSWEApWewHooJ5p5F44GV0wSXi-jV0kA_U,1085
141
- seleniumbase-4.20.5.dist-info/METADATA,sha256=r8ONxYjTcPi1bmundDYdxuZLcliPkl4RQytMbkC5Pd4,83337
142
- seleniumbase-4.20.5.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
143
- seleniumbase-4.20.5.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
- seleniumbase-4.20.5.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
- seleniumbase-4.20.5.dist-info/RECORD,,
140
+ seleniumbase-4.20.7.dist-info/LICENSE,sha256=9CweYVs2pqSWEApWewHooJ5p5F44GV0wSXi-jV0kA_U,1085
141
+ seleniumbase-4.20.7.dist-info/METADATA,sha256=LJtjiayzdiBkzbSq-_6YPq5lzjI9hQHtPHtr8TWenZA,83345
142
+ seleniumbase-4.20.7.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
143
+ seleniumbase-4.20.7.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
+ seleniumbase-4.20.7.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
+ seleniumbase-4.20.7.dist-info/RECORD,,