seleniumbase 4.42.4__py3-none-any.whl → 4.42.5__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.42.4"
2
+ __version__ = "4.42.5"
@@ -756,12 +756,16 @@ def uc_open_with_cdp_mode(driver, url=None, **kwargs):
756
756
  cdp.set_value = CDPM.set_value
757
757
  cdp.submit = CDPM.submit
758
758
  cdp.evaluate = CDPM.evaluate
759
+ cdp.execute_script = CDPM.execute_script
759
760
  cdp.js_dumps = CDPM.js_dumps
760
761
  cdp.maximize = CDPM.maximize
761
762
  cdp.minimize = CDPM.minimize
762
763
  cdp.medimize = CDPM.medimize
763
764
  cdp.set_window_rect = CDPM.set_window_rect
764
765
  cdp.reset_window_size = CDPM.reset_window_size
766
+ cdp.activate_messenger = CDPM.activate_messenger
767
+ cdp.set_messenger_theme = CDPM.set_messenger_theme
768
+ cdp.post_message = CDPM.post_message
765
769
  cdp.set_locale = CDPM.set_locale
766
770
  cdp.set_local_storage_item = CDPM.set_local_storage_item
767
771
  cdp.set_session_storage_item = CDPM.set_session_storage_item
@@ -877,6 +881,8 @@ def uc_open_with_cdp_mode(driver, url=None, **kwargs):
877
881
  cdp.scroll_to_bottom = CDPM.scroll_to_bottom
878
882
  cdp.scroll_up = CDPM.scroll_up
879
883
  cdp.scroll_down = CDPM.scroll_down
884
+ cdp.save_page_source = CDPM.save_page_source
885
+ cdp.save_as_html = CDPM.save_as_html
880
886
  cdp.save_screenshot = CDPM.save_screenshot
881
887
  cdp.print_to_pdf = CDPM.print_to_pdf
882
888
  cdp.save_as_pdf = CDPM.save_as_pdf
@@ -1024,6 +1024,9 @@ class CDPMethods():
1024
1024
  ).strip()
1025
1025
  return self.loop.run_until_complete(self.page.evaluate(expression))
1026
1026
 
1027
+ def execute_script(self, expression):
1028
+ return self.evaluate(expression)
1029
+
1027
1030
  def js_dumps(self, obj_name):
1028
1031
  """Similar to evaluate(), but for dictionary results."""
1029
1032
  if obj_name.startswith("return "):
@@ -1407,6 +1410,64 @@ class CDPMethods():
1407
1410
  mfa_code = self.get_mfa_code(totp_key)
1408
1411
  self.type(selector, mfa_code + "\n", timeout=timeout)
1409
1412
 
1413
+ def activate_messenger(self):
1414
+ js_utils.activate_messenger(self)
1415
+ self.__add_light_pause()
1416
+
1417
+ def set_messenger_theme(
1418
+ self, theme="default", location="default", max_messages="default"
1419
+ ):
1420
+ """Sets a theme for posting messages.
1421
+ Themes: ["flat", "future", "block", "air", "ice"]
1422
+ Locations: ["top_left", "top_center", "top_right",
1423
+ "bottom_left", "bottom_center", "bottom_right"]
1424
+ max_messages: The limit of concurrent messages to display."""
1425
+ if not theme:
1426
+ theme = "default" # "flat"
1427
+ if not location:
1428
+ location = "default" # "bottom_right"
1429
+ if not max_messages:
1430
+ max_messages = "default" # "8"
1431
+ else:
1432
+ max_messages = str(max_messages) # Value must be in string format
1433
+ js_utils.set_messenger_theme(
1434
+ self,
1435
+ theme=theme,
1436
+ location=location,
1437
+ max_messages=max_messages,
1438
+ )
1439
+ self.__add_light_pause()
1440
+
1441
+ def post_message(self, message, duration=None, pause=True, style="info"):
1442
+ """Post a message on the screen with Messenger.
1443
+ Arguments:
1444
+ message: The message to display.
1445
+ duration: The time until the message vanishes. (Default: 2.55s)
1446
+ pause: If True, the program waits until the message completes.
1447
+ style: "info", "success", or "error"."""
1448
+ driver = self.driver
1449
+ if hasattr(driver, "cdp_base"):
1450
+ driver = driver.cdp_base
1451
+ if style not in ["info", "success", "error"]:
1452
+ style = "info"
1453
+ if not duration:
1454
+ duration = settings.DEFAULT_MESSAGE_DURATION
1455
+ if (
1456
+ (
1457
+ driver.config.headless
1458
+ or (hasattr(sb_config, "xvfb") and sb_config.xvfb)
1459
+ )
1460
+ and float(duration) > 0.75
1461
+ ):
1462
+ duration = 0.75
1463
+ try:
1464
+ js_utils.post_message(self, message, duration, style=style)
1465
+ except Exception:
1466
+ print(" * %s message: %s" % (style.upper(), message))
1467
+ if pause:
1468
+ duration = float(duration) + 0.15
1469
+ time.sleep(float(duration))
1470
+
1410
1471
  def set_locale(self, locale):
1411
1472
  """(Settings will take effect on the next page load)"""
1412
1473
  self.loop.run_until_complete(self.page.set_locale(locale))
@@ -1510,7 +1571,10 @@ class CDPMethods():
1510
1571
  except Exception:
1511
1572
  if (
1512
1573
  shared_utils.is_linux()
1513
- and (not sb_config.headed or sb_config.xvfb)
1574
+ and (
1575
+ not sb_config.headed
1576
+ or (hasattr(sb_config, "xvfb") and sb_config.xvfb)
1577
+ )
1514
1578
  and not driver.config.headless
1515
1579
  and (
1516
1580
  not hasattr(sb_config, "_virtual_display")
@@ -2611,6 +2675,40 @@ class CDPMethods():
2611
2675
  self.loop.run_until_complete(self.page.scroll_down(amount))
2612
2676
  self.loop.run_until_complete(self.page.wait())
2613
2677
 
2678
+ def save_page_source(self, name, folder=None):
2679
+ import codecs
2680
+ from seleniumbase.core import log_helper
2681
+ if not name.endswith(".html"):
2682
+ name = name + ".html"
2683
+ if folder:
2684
+ abs_path = os.path.abspath(".")
2685
+ file_path = os.path.join(abs_path, folder)
2686
+ if not os.path.exists(file_path):
2687
+ os.makedirs(file_path)
2688
+ html_file_path = os.path.join(file_path, name)
2689
+ else:
2690
+ html_file_path = name
2691
+ page_source = self.get_page_source()
2692
+ last_page = self.get_current_url()
2693
+ meta_charset = '<meta charset="utf-8">'
2694
+ rendered_source = ""
2695
+ if "://" in last_page:
2696
+ base_href_html = log_helper.get_base_href_html(last_page)
2697
+ if ' charset="' not in page_source:
2698
+ rendered_source = "%s\n%s\n%s" % (
2699
+ base_href_html, meta_charset, page_source
2700
+ )
2701
+ else:
2702
+ rendered_source = "%s\n%s" % (base_href_html, page_source)
2703
+ else:
2704
+ rendered_source = page_source
2705
+ html_file = codecs.open(html_file_path, "w+", "utf-8")
2706
+ html_file.write(rendered_source)
2707
+ html_file.close()
2708
+
2709
+ def save_as_html(self, *args, **kwargs):
2710
+ self.save_page_source(*args, **kwargs)
2711
+
2614
2712
  def save_screenshot(self, name, folder=None, selector=None):
2615
2713
  filename = name
2616
2714
  if folder:
@@ -9205,6 +9205,10 @@ class BaseCase(unittest.TestCase):
9205
9205
  """Same as self.switch_to_newest_window()"""
9206
9206
  self.switch_to_newest_window()
9207
9207
 
9208
+ def save_as_html(self, name, folder=None):
9209
+ """Same as self.save_page_source()"""
9210
+ self.save_page_source(name, folder=folder)
9211
+
9208
9212
  def input(
9209
9213
  self, selector, text, by="css selector", timeout=None, retry=False
9210
9214
  ):
@@ -9654,9 +9658,11 @@ class BaseCase(unittest.TestCase):
9654
9658
 
9655
9659
  def activate_messenger(self):
9656
9660
  self.__check_scope()
9657
- self._check_browser()
9661
+ if not self.__is_cdp_swap_needed():
9662
+ self._check_browser()
9658
9663
  js_utils.activate_messenger(self.driver)
9659
- self.wait_for_ready_state_complete()
9664
+ if not self.__is_cdp_swap_needed():
9665
+ self.wait_for_ready_state_complete()
9660
9666
 
9661
9667
  def set_messenger_theme(
9662
9668
  self, theme="default", location="default", max_messages="default"
@@ -29,6 +29,8 @@ def wait_for_ready_state_complete(driver, timeout=settings.LARGE_TIMEOUT):
29
29
  If the timeout is exceeded, the test will still continue
30
30
  because readyState == "interactive" may be good enough.
31
31
  (Previously, tests would fail immediately if exceeding the timeout.)"""
32
+ if hasattr(driver, "_swap_driver"):
33
+ return
32
34
  if hasattr(settings, "SKIP_JS_WAITS") and settings.SKIP_JS_WAITS:
33
35
  return
34
36
  start_ms = time.time() * 1000.0
@@ -54,8 +56,12 @@ def wait_for_ready_state_complete(driver, timeout=settings.LARGE_TIMEOUT):
54
56
 
55
57
 
56
58
  def execute_async_script(driver, script, timeout=settings.LARGE_TIMEOUT):
57
- driver.set_script_timeout(timeout)
58
- return driver.execute_async_script(script)
59
+ if hasattr(driver, "set_script_timeout"):
60
+ driver.set_script_timeout(timeout)
61
+ if hasattr(driver, "execute_async_script"):
62
+ return driver.execute_async_script(script)
63
+ else:
64
+ return None
59
65
 
60
66
 
61
67
  def wait_for_angularjs(driver, timeout=settings.LARGE_TIMEOUT, **kwargs):
@@ -937,7 +943,10 @@ def post_message(driver, message, msg_dur=None, style="info"):
937
943
  execute_script(driver, messenger_script)
938
944
  except TypeError as e:
939
945
  if (
940
- shared_utils.is_cdp_swap_needed(driver)
946
+ (
947
+ shared_utils.is_cdp_swap_needed(driver)
948
+ or hasattr(driver, "_swap_driver")
949
+ )
941
950
  and "cannot unpack non-iterable" in str(e)
942
951
  ):
943
952
  pass
@@ -1528,10 +1528,10 @@ def save_page_source(driver, name, folder=None):
1528
1528
  page_source = driver.cdp.get_page_source()
1529
1529
  else:
1530
1530
  page_source = driver.page_source
1531
- html_file = codecs.open(html_file_path, "w+", "utf-8")
1532
1531
  rendered_source = log_helper.get_html_source_with_base_href(
1533
1532
  driver, page_source
1534
1533
  )
1534
+ html_file = codecs.open(html_file_path, "w+", "utf-8")
1535
1535
  html_file.write(rendered_source)
1536
1536
  html_file.close()
1537
1537
 
@@ -335,6 +335,8 @@ async def start(
335
335
  xvfb = True
336
336
  else:
337
337
  xvfb = False
338
+ if not hasattr(sb_config, "xvfb"):
339
+ sb_config.xvfb = xvfb
338
340
  if incognito is None:
339
341
  if "--incognito" in sys_argv:
340
342
  incognito = True
@@ -202,6 +202,7 @@ class Config:
202
202
  "InsecureDownloadWarnings,DownloadBubble,DownloadBubbleV2,"
203
203
  "OptimizationTargetPrediction,OptimizationGuideModelDownloading,"
204
204
  "SidePanelPinning,UserAgentClientHint,PrivacySandboxSettings4,"
205
+ "OptimizationHintsFetching,InterestFeedContentSuggestions,"
205
206
  "DisableLoadExtensionCommandLineSwitch"
206
207
  ]
207
208
  if self.proxy:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seleniumbase
3
- Version: 4.42.4
3
+ Version: 4.42.5
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
@@ -75,7 +75,7 @@ Requires-Dist: filelock~=3.16.1; python_version < "3.9"
75
75
  Requires-Dist: filelock~=3.19.1; python_version >= "3.9" and python_version < "3.10"
76
76
  Requires-Dist: filelock>=3.20.0; python_version >= "3.10"
77
77
  Requires-Dist: fasteners>=0.20
78
- Requires-Dist: mycdp>=1.2.0
78
+ Requires-Dist: mycdp>=1.2.1
79
79
  Requires-Dist: pynose>=1.5.5
80
80
  Requires-Dist: platformdirs~=4.3.6; python_version < "3.9"
81
81
  Requires-Dist: platformdirs~=4.4.0; python_version >= "3.9" and python_version < "3.10"
@@ -127,7 +127,8 @@ Requires-Dist: pytest-html==4.0.2
127
127
  Requires-Dist: pytest-metadata==3.1.1
128
128
  Requires-Dist: pytest-ordering==0.6
129
129
  Requires-Dist: pytest-rerunfailures==14.0; python_version < "3.9"
130
- Requires-Dist: pytest-rerunfailures==16.0.1; python_version >= "3.9"
130
+ Requires-Dist: pytest-rerunfailures==16.0.1; python_version >= "3.9" and python_version < "3.10"
131
+ Requires-Dist: pytest-rerunfailures==16.1; python_version >= "3.10"
131
132
  Requires-Dist: pytest-xdist==3.6.1; python_version < "3.9"
132
133
  Requires-Dist: pytest-xdist==3.8.0; python_version >= "3.9"
133
134
  Requires-Dist: parameterized==0.9.0
@@ -3,7 +3,7 @@ sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647
3
3
  sbase/steps.py,sha256=wiPSWZhFpBlWvkqXRJ18btpBu3nQaw9K5AzIJNAX5RM,43521
4
4
  seleniumbase/__init__.py,sha256=JFEY9P5QJqsa1M6ghzLMH2eIPQyh85iglCaQwg8Y8z4,2498
5
5
  seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
6
- seleniumbase/__version__.py,sha256=XfqlisgEGdUvw8FkT-NC7OyGmKmt_1-6RFkqr_Vt3DI,46
6
+ seleniumbase/__version__.py,sha256=QxAoP8OngQTSxxVddd7kUktH7MikCkbIaCqpWS1-a-Y,46
7
7
  seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
8
  seleniumbase/behave/behave_helper.py,sha256=lJtagtivSbEpbRj0EKV4l4PuPU6NANONJJAnYwgVCe0,24379
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=i2Y8_cYpR103zWf65cRTCwhnJQQEpbVhYH9UQKXYF90,250688
39
+ seleniumbase/core/browser_launcher.py,sha256=B1kj4DfxB3IKZZs1SmDcCxhK--8W8tznpwcXIHzJoKE,250972
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
@@ -50,7 +50,7 @@ seleniumbase/core/proxy_helper.py,sha256=pZ1NboNfziHU3vWZLOZLX-qkfM3oKSnpc3omQf9
50
50
  seleniumbase/core/recorder_helper.py,sha256=gDION28OK4NAYsE-7ohKZ9Z3sxQQ0FEjf859LDpqsg4,25320
51
51
  seleniumbase/core/report_helper.py,sha256=AIl6Qava2yW1uSzbLpJBlPlYDz0KE-rVhogh8hsGWBo,12201
52
52
  seleniumbase/core/s3_manager.py,sha256=z_4qx2jI_gtK5r3niGXgEOBpfMUicUCOciowai50MP4,3529
53
- seleniumbase/core/sb_cdp.py,sha256=E_7sbQjyqDAO38IiGYSSB57xrTqxAi8nnqUEWIAXYt8,104551
53
+ seleniumbase/core/sb_cdp.py,sha256=9xK3NoiX2knPmBJkIU-zvUHJ9EGfnSBSxrmnQM7MUVo,108271
54
54
  seleniumbase/core/sb_driver.py,sha256=-IQsskc7HpXQbcBL04IPjmGpyYchyo7v9OPF2WcahDw,14159
55
55
  seleniumbase/core/session_helper.py,sha256=s9zD3PVZEWVzG2h81cCUskbNWLfdjC_LwwQjKptHCak,558
56
56
  seleniumbase/core/settings_parser.py,sha256=gqVohHVlE_5L5Cqe2L24uYrRzvoK-saX8E_Df7_-_3I,7609
@@ -67,12 +67,12 @@ seleniumbase/extensions/disable_csp.zip,sha256=5RvomXnm2PdivUVcxTV6jfvD8WhTEsQYH
67
67
  seleniumbase/extensions/recorder.zip,sha256=JEE_FVEvlS63cFQbVLEroIyPSS91nWCDL0MhjVrmIpk,11813
68
68
  seleniumbase/extensions/sbase_ext.zip,sha256=3s1N8zrVaMz8RQEOIoBzC3KDjtmHwVZRvVsX25Odr_s,8175
69
69
  seleniumbase/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
- seleniumbase/fixtures/base_case.py,sha256=wHXUqjQmALFdWTk5Lf7GX0zWLji3FqzjhnJ91RYrOII,741117
70
+ seleniumbase/fixtures/base_case.py,sha256=GjFttS041ML2mUrquiFpF47fuoIv0FeZBIRYh9RUJeU,741358
71
71
  seleniumbase/fixtures/constants.py,sha256=WMrItuNyKq3XVJ64NluLIRc4gJCxDw8K8qXED0b9S2w,13752
72
72
  seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
73
73
  seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
74
- seleniumbase/fixtures/js_utils.py,sha256=Ykt019DFP8S27o8Kai_ihT01qQWo3RqHUeljqOEUdFU,52247
75
- seleniumbase/fixtures/page_actions.py,sha256=bkCo3s-t2hglV_SYTPPt849R9l0h1gKKboTmZar0n9Y,73213
74
+ seleniumbase/fixtures/js_utils.py,sha256=waXwlyMx7-rIFI8mJ_R8cL_mvih_gXlcJ_wT5h38HbI,52517
75
+ seleniumbase/fixtures/page_actions.py,sha256=DvT0CzqFnpFGLfvmDk7zZ2XMcX_RxLYhNX6Nxxj4rRo,73213
76
76
  seleniumbase/fixtures/page_utils.py,sha256=H1iV8f9vDyEy87DBntyiBXC_tg8HskcebUOAJVn0hxE,12160
77
77
  seleniumbase/fixtures/shared_utils.py,sha256=LFXGGdvXhNZCShsRxyuEOcO2dcEbSkMSW5seQR2oE08,9950
78
78
  seleniumbase/fixtures/unittest_helper.py,sha256=sfZ92rZeBAn_sF_yQ3I6_I7h3lyU5-cV_UMegBNoEm8,1294
@@ -118,8 +118,8 @@ seleniumbase/undetected/webelement.py,sha256=OOpUYbEiOG52KsYYyuDW9tYLdA2SMnukvwQ
118
118
  seleniumbase/undetected/cdp_driver/__init__.py,sha256=Ga9alwuaZZy4_XOShc0HjgFnNqpPdrcbjAicz5gE7a4,215
119
119
  seleniumbase/undetected/cdp_driver/_contradict.py,sha256=lP4b0h5quAy573ETn_TBbYV889cL1AuPLVInpJ0ZkiU,3183
120
120
  seleniumbase/undetected/cdp_driver/browser.py,sha256=JQlwMuwZgK0vWlvH4SU6DA7LcZo2I4hJRUIcv4gbZCQ,35609
121
- seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=83NOk962PCiERr6YQ_QjTS5yS8Uwcnsyaw9BdgnGoAQ,33481
122
- seleniumbase/undetected/cdp_driver/config.py,sha256=pjcGq0azNQpNb3XT2sTjxShLEmcIPdzTzB_mitu6GkM,13557
121
+ seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=fs8c3kz9zvESd2xM29ovw0tsffMUFB5VZTrphWHT3g4,33552
122
+ seleniumbase/undetected/cdp_driver/config.py,sha256=B5Wf0E5xvCmIuLO_Y06oyKYd04yM2auj--JyGKUKsls,13630
123
123
  seleniumbase/undetected/cdp_driver/connection.py,sha256=WgZ4QamXSdTzP4Xfgkn8mxv-JFivMG6hqbyHy2_LQlg,25717
124
124
  seleniumbase/undetected/cdp_driver/element.py,sha256=FIC6v7OmumLCT-_vIc3H4oju_oBbaLpWJUJIKm2c_q4,40467
125
125
  seleniumbase/undetected/cdp_driver/tab.py,sha256=t7Ucn0pmm7imwdCM-5KmIJNU2MCeMuIl6G3T2VMrbxU,53170
@@ -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.42.4.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
141
- seleniumbase-4.42.4.dist-info/METADATA,sha256=rZJaeZmWtedSbZT_0SihwgvcSlfa5NEuVfmF3uIB40U,89479
142
- seleniumbase-4.42.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
- seleniumbase-4.42.4.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
- seleniumbase-4.42.4.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
- seleniumbase-4.42.4.dist-info/RECORD,,
140
+ seleniumbase-4.42.5.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
141
+ seleniumbase-4.42.5.dist-info/METADATA,sha256=tMx-4iFxgYOZpmEj-DZwbYvzZi2_tN8kXK0Plmc9Pus,89575
142
+ seleniumbase-4.42.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
+ seleniumbase-4.42.5.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
+ seleniumbase-4.42.5.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
+ seleniumbase-4.42.5.dist-info/RECORD,,