seleniumbase 4.42.5__py3-none-any.whl → 4.42.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.

Potentially problematic release.


This version of seleniumbase might be problematic. Click here for more details.

@@ -1,2 +1,2 @@
1
1
  # seleniumbase package
2
- __version__ = "4.42.5"
2
+ __version__ = "4.42.6"
@@ -985,17 +985,15 @@ def __install_pyautogui_if_missing():
985
985
  import pyautogui
986
986
  with suppress(Exception):
987
987
  use_pyautogui_ver = constants.PyAutoGUI.VER
988
- if pyautogui.__version__ != use_pyautogui_ver:
989
- del pyautogui
990
- shared_utils.pip_install(
991
- "pyautogui", version=use_pyautogui_ver
992
- )
988
+ u_pv = shared_utils.make_version_tuple(use_pyautogui_ver)
989
+ pv = shared_utils.make_version_tuple(pyautogui.__version__)
990
+ if pv < u_pv:
991
+ del pyautogui # To get newer ver
992
+ shared_utils.pip_install("pyautogui", version="Latest")
993
993
  import pyautogui
994
994
  except Exception:
995
995
  print("\nPyAutoGUI required! Installing now...")
996
- shared_utils.pip_install(
997
- "pyautogui", version=constants.PyAutoGUI.VER
998
- )
996
+ shared_utils.pip_install("pyautogui", version="Latest")
999
997
  try:
1000
998
  import pyautogui
1001
999
  except Exception:
@@ -912,6 +912,12 @@ class CDPMethods():
912
912
  element.scroll_into_view()
913
913
  if text.endswith("\n") or text.endswith("\r"):
914
914
  text = text[:-1] + "\r\n"
915
+ elif (
916
+ element.tag_name == "textarea"
917
+ and "\n" in text
918
+ and "\r" not in text
919
+ ):
920
+ text = text.replace("\n", "\r")
915
921
  element.send_keys(text)
916
922
  self.__slow_mode_pause_if_set()
917
923
  self.loop.run_until_complete(self.page.sleep(0.025))
@@ -927,6 +933,12 @@ class CDPMethods():
927
933
  if text.endswith("\n") or text.endswith("\r"):
928
934
  submit = True
929
935
  text = text[:-1]
936
+ elif (
937
+ element.tag_name == "textarea"
938
+ and "\n" in text
939
+ and "\r" not in text
940
+ ):
941
+ text = text.replace("\n", "\r")
930
942
  for key in text:
931
943
  element.send_keys(key)
932
944
  time.sleep(0.044)
@@ -947,6 +959,12 @@ class CDPMethods():
947
959
  element.clear_input()
948
960
  if text.endswith("\n") or text.endswith("\r"):
949
961
  text = text[:-1] + "\r\n"
962
+ elif (
963
+ element.tag_name == "textarea"
964
+ and "\n" in text
965
+ and "\r" not in text
966
+ ):
967
+ text = text.replace("\n", "\r")
950
968
  element.send_keys(text)
951
969
  self.__slow_mode_pause_if_set()
952
970
  self.loop.run_until_complete(self.page.sleep(0.025))
@@ -1555,17 +1573,15 @@ class CDPMethods():
1555
1573
  import pyautogui
1556
1574
  with suppress(Exception):
1557
1575
  use_pyautogui_ver = constants.PyAutoGUI.VER
1558
- if pyautogui.__version__ != use_pyautogui_ver:
1559
- del pyautogui
1560
- shared_utils.pip_install(
1561
- "pyautogui", version=use_pyautogui_ver
1562
- )
1576
+ u_pv = shared_utils.make_version_tuple(use_pyautogui_ver)
1577
+ pv = shared_utils.make_version_tuple(pyautogui.__version__)
1578
+ if pv < u_pv:
1579
+ del pyautogui # To get newer ver
1580
+ shared_utils.pip_install("pyautogui", version="Latest")
1563
1581
  import pyautogui
1564
1582
  except Exception:
1565
1583
  print("\nPyAutoGUI required! Installing now...")
1566
- shared_utils.pip_install(
1567
- "pyautogui", version=constants.PyAutoGUI.VER
1568
- )
1584
+ shared_utils.pip_install("pyautogui", version="Latest")
1569
1585
  try:
1570
1586
  import pyautogui
1571
1587
  except Exception:
@@ -114,9 +114,7 @@ class BaseCase(unittest.TestCase):
114
114
  self.driver = None
115
115
  self.environment = None
116
116
  self.env = None # Add a shortened version of self.environment
117
- self.version_list = [
118
- int(i) for i in __version__.split(".") if i.isdigit()
119
- ]
117
+ self.version_list = shared_utils.make_version_list(__version__)
120
118
  self.version_tuple = tuple(self.version_list)
121
119
  self.version_info = self.version_tuple
122
120
  self.time = time.time
@@ -14491,11 +14489,11 @@ class BaseCase(unittest.TestCase):
14491
14489
  import pyautogui
14492
14490
  with suppress(Exception):
14493
14491
  use_pyautogui_ver = constants.PyAutoGUI.VER
14494
- if pyautogui.__version__ != use_pyautogui_ver:
14492
+ u_pv = shared_utils.make_version_tuple(use_pyautogui_ver)
14493
+ pv = shared_utils.make_version_tuple(pyautogui.__version__)
14494
+ if pv < u_pv:
14495
14495
  del pyautogui # To get newer ver
14496
- shared_utils.pip_install(
14497
- "pyautogui", version=use_pyautogui_ver
14498
- )
14496
+ shared_utils.pip_install("pyautogui", version="Latest")
14499
14497
  import pyautogui
14500
14498
  pyautogui_is_installed = True
14501
14499
  except Exception:
@@ -14504,9 +14502,7 @@ class BaseCase(unittest.TestCase):
14504
14502
  "Installing now..."
14505
14503
  )
14506
14504
  print("\n" + message)
14507
- shared_utils.pip_install(
14508
- "pyautogui", version=constants.PyAutoGUI.VER
14509
- )
14505
+ shared_utils.pip_install("pyautogui", version="Latest")
14510
14506
  import pyautogui
14511
14507
  pyautogui_is_installed = True
14512
14508
  if (
@@ -18,16 +18,35 @@ def pip_install(package, version=None):
18
18
  pip_install_lock = fasteners.InterProcessLock(
19
19
  constants.PipInstall.LOCKFILE
20
20
  )
21
+ upgrade_to_latest = False
22
+ if (
23
+ version
24
+ and ("U" in str(version).upper() or "L" in str(version).upper())
25
+ ):
26
+ # Upgrade to Latest when specified with "U" or "L"
27
+ upgrade_to_latest = True
21
28
  with pip_install_lock:
22
29
  if not version:
23
30
  subprocess.check_call(
24
31
  [sys.executable, "-m", "pip", "install", package]
25
32
  )
26
- else:
33
+ elif not upgrade_to_latest:
27
34
  package_and_version = package + "==" + str(version)
28
35
  subprocess.check_call(
29
36
  [sys.executable, "-m", "pip", "install", package_and_version]
30
37
  )
38
+ else:
39
+ subprocess.check_call(
40
+ [sys.executable, "-m", "pip", "install", "-U", package]
41
+ )
42
+
43
+
44
+ def make_version_list(version_str):
45
+ return [int(i) for i in version_str.split(".") if i.isdigit()]
46
+
47
+
48
+ def make_version_tuple(version_str):
49
+ return tuple(make_version_list(version_str))
31
50
 
32
51
 
33
52
  def get_mfa_code(totp_key=None):
@@ -121,22 +121,26 @@ def __activate_virtual_display_as_needed(
121
121
  import pyautogui
122
122
  with suppress(Exception):
123
123
  use_pyautogui_ver = constants.PyAutoGUI.VER
124
- if pyautogui.__version__ != use_pyautogui_ver:
124
+ u_pv = shared_utils.make_version_tuple(
125
+ use_pyautogui_ver
126
+ )
127
+ pv = shared_utils.make_version_tuple(
128
+ pyautogui.__version__
129
+ )
130
+ if pv < u_pv:
125
131
  del pyautogui # To get newer ver
126
132
  shared_utils.pip_install(
127
- "pyautogui", version=use_pyautogui_ver
133
+ "pyautogui", version="Latest"
128
134
  )
129
135
  import pyautogui
130
136
  pyautogui_is_installed = True
131
137
  except Exception:
132
138
  message = (
133
- "PyAutoGUI is required for UC Mode on Linux! "
139
+ "PyAutoGUI is required for CDP Mode on Linux! "
134
140
  "Installing now..."
135
141
  )
136
142
  print("\n" + message)
137
- shared_utils.pip_install(
138
- "pyautogui", version=constants.PyAutoGUI.VER
139
- )
143
+ shared_utils.pip_install("pyautogui", version="Latest")
140
144
  import pyautogui
141
145
  pyautogui_is_installed = True
142
146
  if (
@@ -689,7 +693,10 @@ def start_sync(*args, **kwargs) -> Browser:
689
693
 
690
694
 
691
695
  async def create_from_driver(driver) -> Browser:
692
- """Create a Browser instance from a running driver instance."""
696
+ """Create a CDP Browser instance from a running UC driver.
697
+ This method is DEPRECATED in favor of activate_cdp_mode(),
698
+ which includes the option of switching between the modes,
699
+ and also properly handles configuration based on options."""
693
700
  from .config import Config
694
701
 
695
702
  conf = Config()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: seleniumbase
3
- Version: 4.42.5
3
+ Version: 4.42.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
@@ -95,9 +95,9 @@ Requires-Dist: pygments>=2.19.2
95
95
  Requires-Dist: pyreadline3>=3.5.4; platform_system == "Windows"
96
96
  Requires-Dist: tabcompleter>=1.4.0
97
97
  Requires-Dist: pdbp>=1.7.1
98
- Requires-Dist: idna==3.10
98
+ Requires-Dist: idna>=3.11
99
99
  Requires-Dist: chardet==5.2.0
100
- Requires-Dist: charset-normalizer<4,>=3.4.3
100
+ Requires-Dist: charset-normalizer<4,>=3.4.4
101
101
  Requires-Dist: urllib3<2,>=1.26.20; python_version < "3.10"
102
102
  Requires-Dist: urllib3<2.6.0,>=1.26.20; python_version >= "3.10"
103
103
  Requires-Dist: requests==2.32.4; python_version < "3.9"
@@ -149,7 +149,8 @@ Requires-Dist: allure-python-commons>=2.13.5; extra == "allure"
149
149
  Requires-Dist: allure-behave>=2.13.5; extra == "allure"
150
150
  Provides-Extra: coverage
151
151
  Requires-Dist: coverage>=7.6.1; python_version < "3.9" and extra == "coverage"
152
- Requires-Dist: coverage>=7.10.7; python_version >= "3.9" and extra == "coverage"
152
+ Requires-Dist: coverage>=7.10.7; (python_version >= "3.9" and python_version < "3.10") and extra == "coverage"
153
+ Requires-Dist: coverage>=7.11.0; python_version >= "3.10" and extra == "coverage"
153
154
  Requires-Dist: pytest-cov>=5.0.0; python_version < "3.9" and extra == "coverage"
154
155
  Requires-Dist: pytest-cov>=7.0.0; python_version >= "3.9" and extra == "coverage"
155
156
  Provides-Extra: flake8
@@ -177,7 +178,8 @@ Requires-Dist: pycparser==2.22; python_version < "3.9" and extra == "pdfminer"
177
178
  Requires-Dist: pycparser==2.23; python_version >= "3.9" and extra == "pdfminer"
178
179
  Provides-Extra: pillow
179
180
  Requires-Dist: Pillow>=10.4.0; python_version < "3.9" and extra == "pillow"
180
- Requires-Dist: Pillow>=11.3.0; python_version >= "3.9" and extra == "pillow"
181
+ Requires-Dist: Pillow>=11.3.0; (python_version >= "3.9" and python_version < "3.10") and extra == "pillow"
182
+ Requires-Dist: Pillow>=12.0.0; python_version >= "3.10" and extra == "pillow"
181
183
  Provides-Extra: pip-system-certs
182
184
  Requires-Dist: pip-system-certs==4.0; platform_system == "Windows" and extra == "pip-system-certs"
183
185
  Provides-Extra: proxy
@@ -269,13 +271,13 @@ Dynamic: summary
269
271
  <br />
270
272
  </p>
271
273
 
272
- <p>SeleniumBase is the professional toolkit for web automation activities. Built for testing websites, bypassing CAPTCHAs, enhancing productivity, completing tasks, and scaling your business.</p>
274
+ <p>SeleniumBase is used for automating browsers, testing websites, scraping data, and bypassing CAPTCHAs.</p>
273
275
 
274
276
  --------
275
277
 
276
278
  📚 Learn from [**over 200 examples** in the **SeleniumBase/examples/** folder](https://github.com/seleniumbase/SeleniumBase/tree/master/examples).
277
279
 
278
- 🐙 Note that <a translate="no" href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/uc_mode.md"><b>UC Mode</b></a> / <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/cdp_mode/ReadMe.md"><b>CDP Mode</b></a> (Stealth Mode) have their own ReadMe files.
280
+ 🐙 Stealth modes: <a translate="no" href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/uc_mode.md"><b>UC Mode</b></a> and <a translate="no" href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/cdp_mode/ReadMe.md"><b>CDP Mode</b></a> help you evade bot-detection.
279
281
 
280
282
  ℹ️ Most scripts run with raw <code translate="no"><b>python</b></code>, although some scripts use <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/syntax_formats.md">Syntax Formats</a> that expect <a href="https://docs.pytest.org/en/latest/how-to/usage.html" translate="no"><b>pytest</b></a> (a Python unit-testing framework included with SeleniumBase that can discover, collect, and run tests automatically).
281
283
 
@@ -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=QxAoP8OngQTSxxVddd7kUktH7MikCkbIaCqpWS1-a-Y,46
6
+ seleniumbase/__version__.py,sha256=NduMJBypNeOGItaajvpq6CyjoWb3RO_0p6sVSx1E6ho,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=B1kj4DfxB3IKZZs1SmDcCxhK--8W8tznpwcXIHzJoKE,250972
39
+ seleniumbase/core/browser_launcher.py,sha256=N9VF8BmQFtIs6NBOD6neVjueaEAmDfJlmCi5mvN1Prk,251017
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=9xK3NoiX2knPmBJkIU-zvUHJ9EGfnSBSxrmnQM7MUVo,108271
53
+ seleniumbase/core/sb_cdp.py,sha256=Vs0rQCY294R7TAZzxuwa-MhAFUjm-BTkICA4IkhKJJo,108825
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,14 +67,14 @@ 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=GjFttS041ML2mUrquiFpF47fuoIv0FeZBIRYh9RUJeU,741358
70
+ seleniumbase/fixtures/base_case.py,sha256=cTzBh-ndkowdmtrAtgJ7xgwyZUIonYDTBS6dS6R6yA0,741333
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
74
  seleniumbase/fixtures/js_utils.py,sha256=waXwlyMx7-rIFI8mJ_R8cL_mvih_gXlcJ_wT5h38HbI,52517
75
75
  seleniumbase/fixtures/page_actions.py,sha256=DvT0CzqFnpFGLfvmDk7zZ2XMcX_RxLYhNX6Nxxj4rRo,73213
76
76
  seleniumbase/fixtures/page_utils.py,sha256=H1iV8f9vDyEy87DBntyiBXC_tg8HskcebUOAJVn0hxE,12160
77
- seleniumbase/fixtures/shared_utils.py,sha256=LFXGGdvXhNZCShsRxyuEOcO2dcEbSkMSW5seQR2oE08,9950
77
+ seleniumbase/fixtures/shared_utils.py,sha256=kn0rcF0tEkQkiT8RGVooNFsLnVWmdPeTH9PfIm86TOI,10527
78
78
  seleniumbase/fixtures/unittest_helper.py,sha256=sfZ92rZeBAn_sF_yQ3I6_I7h3lyU5-cV_UMegBNoEm8,1294
79
79
  seleniumbase/fixtures/words.py,sha256=FOA4mAYvl3EPVpBTvgvK6YwCL8BdlRCmed685kEe7Vg,7827
80
80
  seleniumbase/fixtures/xpath_to_css.py,sha256=lML56k656fElXJ4NJF07r35FjctrbgQkXUotNk7A-as,8876
@@ -118,7 +118,7 @@ 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=fs8c3kz9zvESd2xM29ovw0tsffMUFB5VZTrphWHT3g4,33552
121
+ seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=XpzaUAbTL-4IciQ984x9QvA9HgYFzRlYrRv94fIfbpM,33918
122
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
@@ -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.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,,
140
+ seleniumbase-4.42.6.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
141
+ seleniumbase-4.42.6.dist-info/METADATA,sha256=n-eDmroQcKl5RS_f7yGQQg4lljQm7ncUPdUN8Fedj24,89717
142
+ seleniumbase-4.42.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
143
+ seleniumbase-4.42.6.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
144
+ seleniumbase-4.42.6.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
145
+ seleniumbase-4.42.6.dist-info/RECORD,,