seleniumbase 4.42.6__py3-none-any.whl → 4.43.0__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.
- seleniumbase/__version__.py +1 -1
- seleniumbase/console_scripts/sb_mkdir.py +2 -7
- seleniumbase/core/sb_cdp.py +16 -39
- seleniumbase/fixtures/base_case.py +3 -1
- seleniumbase/undetected/cdp_driver/browser.py +2 -1
- {seleniumbase-4.42.6.dist-info → seleniumbase-4.43.0.dist-info}/METADATA +11 -11
- {seleniumbase-4.42.6.dist-info → seleniumbase-4.43.0.dist-info}/RECORD +11 -11
- {seleniumbase-4.42.6.dist-info → seleniumbase-4.43.0.dist-info}/WHEEL +0 -0
- {seleniumbase-4.42.6.dist-info → seleniumbase-4.43.0.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.42.6.dist-info → seleniumbase-4.43.0.dist-info}/licenses/LICENSE +0 -0
- {seleniumbase-4.42.6.dist-info → seleniumbase-4.43.0.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# seleniumbase package
|
|
2
|
-
__version__ = "4.
|
|
2
|
+
__version__ = "4.43.0"
|
|
@@ -636,17 +636,12 @@ def main():
|
|
|
636
636
|
data.append("")
|
|
637
637
|
data.append("class GoogleTests(BaseCase):")
|
|
638
638
|
data.append(" def test_google_dot_com(self):")
|
|
639
|
+
data.append(" if self.headless:")
|
|
640
|
+
data.append(' self.skip("Skipping test in headless mode.")')
|
|
639
641
|
data.append(" if not self.undetectable:")
|
|
640
642
|
data.append(" self.get_new_driver(undetectable=True)")
|
|
641
643
|
data.append(' self.open("https://google.com/ncr")')
|
|
642
644
|
data.append(' self.assert_title_contains("Google")')
|
|
643
|
-
data.append(" self.sleep(0.05)")
|
|
644
|
-
data.append(" self.save_screenshot_to_logs()")
|
|
645
|
-
data.append(
|
|
646
|
-
" self.wait_for_element('iframe[role=\"presentation\"]')"
|
|
647
|
-
)
|
|
648
|
-
data.append(" self.hide_elements('iframe')")
|
|
649
|
-
data.append(" self.sleep(0.05)")
|
|
650
645
|
data.append(" self.save_screenshot_to_logs()")
|
|
651
646
|
data.append(' self.type(HomePage.search_box, "github.com")')
|
|
652
647
|
data.append(" self.assert_element(HomePage.search_button)")
|
seleniumbase/core/sb_cdp.py
CHANGED
|
@@ -187,46 +187,23 @@ class CDPMethods():
|
|
|
187
187
|
element with the given tag. (Eg: a, button, div, script, span)"""
|
|
188
188
|
if not timeout:
|
|
189
189
|
timeout = settings.SMALL_TIMEOUT
|
|
190
|
-
self.__add_light_pause()
|
|
191
|
-
time_now = time.time()
|
|
192
|
-
self.assert_text(text, timeout=timeout)
|
|
193
|
-
spent = int(time.time() - time_now)
|
|
194
|
-
remaining = 1 + timeout - spent
|
|
195
|
-
if tag_name:
|
|
196
|
-
self.assert_element(tag_name, timeout=remaining)
|
|
197
|
-
elements = self.loop.run_until_complete(
|
|
198
|
-
self.page.find_elements_by_text(text=text)
|
|
199
|
-
)
|
|
200
190
|
if tag_name:
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
element
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
and text.strip() in element.parent.text
|
|
218
|
-
):
|
|
219
|
-
element = self.__add_sync_methods(element.parent)
|
|
220
|
-
return self.__add_sync_methods(element)
|
|
221
|
-
elif (
|
|
222
|
-
element
|
|
223
|
-
and element.parent
|
|
224
|
-
and element.parent.parent
|
|
225
|
-
and tag_name in element.parent.parent.tag_name.lower()
|
|
226
|
-
and text.strip() in element.parent.parent.text
|
|
227
|
-
):
|
|
228
|
-
element = self.__add_sync_methods(element.parent.parent)
|
|
229
|
-
return self.__add_sync_methods(element)
|
|
191
|
+
try:
|
|
192
|
+
return self.find_element(
|
|
193
|
+
'%s:contains("%s")' % (tag_name, text), timeout=timeout
|
|
194
|
+
)
|
|
195
|
+
except Exception:
|
|
196
|
+
pass # The exception will be raised later
|
|
197
|
+
else:
|
|
198
|
+
self.__add_light_pause()
|
|
199
|
+
self.assert_text(text, timeout=timeout)
|
|
200
|
+
elements = self.loop.run_until_complete(
|
|
201
|
+
self.page.find_elements_by_text(text=text)
|
|
202
|
+
)
|
|
203
|
+
for element in elements:
|
|
204
|
+
if element:
|
|
205
|
+
element = self.__add_sync_methods(element)
|
|
206
|
+
return self.__add_sync_methods(element)
|
|
230
207
|
plural = "s"
|
|
231
208
|
if timeout == 1:
|
|
232
209
|
plural = ""
|
|
@@ -10173,7 +10173,7 @@ class BaseCase(unittest.TestCase):
|
|
|
10173
10173
|
text = self.__get_type_checked_text(text)
|
|
10174
10174
|
selector, by = self.__recalculate_selector(selector, by)
|
|
10175
10175
|
if self.__is_cdp_swap_needed():
|
|
10176
|
-
return self.cdp.
|
|
10176
|
+
return self.cdp.wait_for_text(text, selector, timeout=timeout)
|
|
10177
10177
|
elif self.__is_shadow_selector(selector):
|
|
10178
10178
|
return self.__wait_for_shadow_text_visible(text, selector, timeout)
|
|
10179
10179
|
return page_actions.wait_for_text_visible(
|
|
@@ -10530,6 +10530,8 @@ class BaseCase(unittest.TestCase):
|
|
|
10530
10530
|
timeout = settings.LARGE_TIMEOUT
|
|
10531
10531
|
if self.timeout_multiplier and timeout == settings.LARGE_TIMEOUT:
|
|
10532
10532
|
timeout = self.__get_new_timeout(timeout)
|
|
10533
|
+
if self.__is_cdp_swap_needed():
|
|
10534
|
+
return self.cdp.find_element_by_text(text=link_text, tag_name="a")
|
|
10533
10535
|
return self.wait_for_element_visible(
|
|
10534
10536
|
link_text, by="link text", timeout=timeout
|
|
10535
10537
|
)
|
|
@@ -369,7 +369,8 @@ class Browser:
|
|
|
369
369
|
proxy_user = username_and_password.split(":")[0]
|
|
370
370
|
proxy_pass = username_and_password.split(":")[1]
|
|
371
371
|
await connection.set_auth(proxy_user, proxy_pass, self.tabs[0])
|
|
372
|
-
time.sleep(0.
|
|
372
|
+
time.sleep(0.22)
|
|
373
|
+
await connection.sleep(0.05)
|
|
373
374
|
frame_id, loader_id, *_ = await connection.send(
|
|
374
375
|
cdp.page.navigate(url)
|
|
375
376
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: seleniumbase
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.43.0
|
|
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
|
|
@@ -113,7 +113,7 @@ Requires-Dist: websocket-client~=1.8.0; python_version < "3.9"
|
|
|
113
113
|
Requires-Dist: websocket-client~=1.9.0; python_version >= "3.9"
|
|
114
114
|
Requires-Dist: selenium==4.27.1; python_version < "3.9"
|
|
115
115
|
Requires-Dist: selenium==4.32.0; python_version >= "3.9" and python_version < "3.10"
|
|
116
|
-
Requires-Dist: selenium==4.
|
|
116
|
+
Requires-Dist: selenium==4.37.0; python_version >= "3.10"
|
|
117
117
|
Requires-Dist: cssselect==1.2.0; python_version < "3.9"
|
|
118
118
|
Requires-Dist: cssselect==1.3.0; python_version >= "3.9"
|
|
119
119
|
Requires-Dist: sortedcontainers==2.4.0
|
|
@@ -171,7 +171,7 @@ Provides-Extra: pdfminer
|
|
|
171
171
|
Requires-Dist: pdfminer.six==20250324; python_version < "3.9" and extra == "pdfminer"
|
|
172
172
|
Requires-Dist: pdfminer.six==20250506; python_version >= "3.9" and extra == "pdfminer"
|
|
173
173
|
Requires-Dist: cryptography==39.0.2; python_version < "3.9" and extra == "pdfminer"
|
|
174
|
-
Requires-Dist: cryptography==46.0.
|
|
174
|
+
Requires-Dist: cryptography==46.0.3; python_version >= "3.9" and extra == "pdfminer"
|
|
175
175
|
Requires-Dist: cffi==1.17.1; python_version < "3.9" and extra == "pdfminer"
|
|
176
176
|
Requires-Dist: cffi==2.0.0; python_version >= "3.9" and extra == "pdfminer"
|
|
177
177
|
Requires-Dist: pycparser==2.22; python_version < "3.9" and extra == "pdfminer"
|
|
@@ -229,9 +229,10 @@ Dynamic: summary
|
|
|
229
229
|
|
|
230
230
|
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/"><img src="https://seleniumbase.github.io/cdn/img/super_logo_sb3.png" alt="SeleniumBase" title="SeleniumBase" width="350" /></a></p>
|
|
231
231
|
|
|
232
|
-
<p align="center" class="hero__title"><b>
|
|
232
|
+
<p align="center" class="hero__title"><b>Automate, test, and scrape the web — on your own terms.<br /></b></p>
|
|
233
233
|
|
|
234
|
-
<p align="center"><a href="https://pypi.python.org/pypi/seleniumbase" target="_blank"><img src="https://img.shields.io/pypi/v/seleniumbase.svg?color=3399EE" alt="PyPI version" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/releases" target="_blank"><img src="https://img.shields.io/github/v/release/seleniumbase/SeleniumBase.svg?color=22AAEE" alt="GitHub version" /></a> <a href="https://seleniumbase.io"><img src="https://img.shields.io/badge/docs-seleniumbase.io-11BBAA.svg" alt="SeleniumBase Docs" /></a
|
|
234
|
+
<p align="center"><a href="https://pypi.python.org/pypi/seleniumbase" target="_blank"><img src="https://img.shields.io/pypi/v/seleniumbase.svg?color=3399EE" alt="PyPI version" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/releases" target="_blank"><img src="https://img.shields.io/github/v/release/seleniumbase/SeleniumBase.svg?color=22AAEE" alt="GitHub version" /></a> <a href="https://seleniumbase.io"><img src="https://img.shields.io/badge/docs-seleniumbase.io-11BBAA.svg" alt="SeleniumBase Docs" /></a></p>
|
|
235
|
+
<p align="center"><a href="https://github.com/seleniumbase/SeleniumBase/actions" target="_blank"><img src="https://github.com/seleniumbase/SeleniumBase/workflows/CI%20build/badge.svg" alt="SeleniumBase GitHub Actions" /></a> <a href="https://github.com/seleniumbase/SeleniumBase/stargazers"><img src="https://img.shields.io/github/stars/seleniumbase/SeleniumBase?style=social"></a> <a href="https://pepy.tech/projects/seleniumbase?timeRange=threeMonths&category=version&includeCIDownloads=true&granularity=daily&viewType=line&versions=*" target="_blank"><img src="https://static.pepy.tech/badge/seleniumbase" alt="SeleniumBase PyPI downloads" /></a> <a href="https://discord.gg/EdhQTn3EyE" target="_blank"><img src="https://img.shields.io/discord/727927627830001734?color=7289DA&label=Discord&logo=discord&logoColor=white"/></a></p>
|
|
235
236
|
|
|
236
237
|
<p align="center">
|
|
237
238
|
<a href="#python_installation">🚀 Start</a> |
|
|
@@ -271,7 +272,7 @@ Dynamic: summary
|
|
|
271
272
|
<br />
|
|
272
273
|
</p>
|
|
273
274
|
|
|
274
|
-
<p>SeleniumBase is
|
|
275
|
+
<p>SeleniumBase is a browser automation framework for the modern web. Both new and experienced Python users alike can easily get started. With special stealth features like UC Mode and CDP Mode, you'll be evading bot-detection and bypassing CAPTCHAs in minutes.</p>
|
|
275
276
|
|
|
276
277
|
--------
|
|
277
278
|
|
|
@@ -545,7 +546,6 @@ pip install seleniumbase
|
|
|
545
546
|
|
|
546
547
|
* (Add ``--upgrade`` OR ``-U`` to upgrade SeleniumBase.)
|
|
547
548
|
* (Add ``--force-reinstall`` to upgrade indirect packages.)
|
|
548
|
-
* (Use ``pip3`` if multiple versions of Python are present.)
|
|
549
549
|
|
|
550
550
|
🔵 **How to install ``seleniumbase`` from a GitHub clone:**
|
|
551
551
|
|
|
@@ -619,10 +619,10 @@ pip install -e .
|
|
|
619
619
|
<summary> ▶️ Here's sample output from a chromedriver download. (<b>click to expand</b>)</summary>
|
|
620
620
|
|
|
621
621
|
```zsh
|
|
622
|
-
*** chromedriver to download =
|
|
622
|
+
*** chromedriver to download = 141.0.7390.78 (Latest Stable)
|
|
623
623
|
|
|
624
624
|
Downloading chromedriver-mac-arm64.zip from:
|
|
625
|
-
https://storage.googleapis.com/chrome-for-testing-public/
|
|
625
|
+
https://storage.googleapis.com/chrome-for-testing-public/141.0.7390.78/mac-arm64/chromedriver-mac-arm64.zip ...
|
|
626
626
|
Download Complete!
|
|
627
627
|
|
|
628
628
|
Extracting ['chromedriver'] from chromedriver-mac-arm64.zip ...
|
|
@@ -632,8 +632,8 @@ The file [chromedriver] was saved to:
|
|
|
632
632
|
~/github/SeleniumBase/seleniumbase/drivers/
|
|
633
633
|
chromedriver
|
|
634
634
|
|
|
635
|
-
Making [chromedriver
|
|
636
|
-
[chromedriver
|
|
635
|
+
Making [chromedriver 141.0.7390.78] executable ...
|
|
636
|
+
[chromedriver 141.0.7390.78] is now ready for use!
|
|
637
637
|
```
|
|
638
638
|
|
|
639
639
|
</details>
|
|
@@ -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=
|
|
6
|
+
seleniumbase/__version__.py,sha256=Rk3JHDl6bfc3IWDxvXHc9k4a6DizDy4Ud9_fyX4zmhA,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
|
|
@@ -27,7 +27,7 @@ seleniumbase/console_scripts/sb_caseplans.py,sha256=C_vhATSa9dEDOSmHT9uk64ebkXcq
|
|
|
27
27
|
seleniumbase/console_scripts/sb_commander.py,sha256=Ejal4WhnMSTLcykCT04jmMuH_fvDrfIAoxoJ23LclAM,13084
|
|
28
28
|
seleniumbase/console_scripts/sb_install.py,sha256=LosIv69jk2k6bNdcB1ozUjV0vZ4lWyUBr8xM2UpSz5g,56401
|
|
29
29
|
seleniumbase/console_scripts/sb_mkchart.py,sha256=ep9g-9CSIwaOJKVxhB3xjRQpfsuApyN8-Dr129cNXwQ,10941
|
|
30
|
-
seleniumbase/console_scripts/sb_mkdir.py,sha256=
|
|
30
|
+
seleniumbase/console_scripts/sb_mkdir.py,sha256=YRpgpC6FSVuVlIx-3E-JKomF4jI5HVBk8OSWDULmoAI,30720
|
|
31
31
|
seleniumbase/console_scripts/sb_mkfile.py,sha256=OWYd4yFccmjrd-gNn1t1una-HDRU2_N2-r4Tg3nHsj0,17744
|
|
32
32
|
seleniumbase/console_scripts/sb_mkpres.py,sha256=EWFRVacjYTX49y-fEiYTZacM9_01IxuuaO4nMjHrIGo,11015
|
|
33
33
|
seleniumbase/console_scripts/sb_mkrec.py,sha256=E268227Q75ZHP1rGFoIY_6i6FzGxD_kWmKm7QMntpW4,12012
|
|
@@ -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=
|
|
53
|
+
seleniumbase/core/sb_cdp.py,sha256=g2bmOuzH32cPkIUqZ7QVkjZrvCTD-bGcN5nqAFydnxk,107843
|
|
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,7 +67,7 @@ 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=
|
|
70
|
+
seleniumbase/fixtures/base_case.py,sha256=mHFnGq2TzI79mDYtxxEKhSYrGZd6LbauaS_pCb4mBbo,741459
|
|
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
|
|
@@ -117,7 +117,7 @@ seleniumbase/undetected/reactor.py,sha256=NropaXcO54pzmDq6quR27qPJxab6636H7LRAaq
|
|
|
117
117
|
seleniumbase/undetected/webelement.py,sha256=OOpUYbEiOG52KsYYyuDW9tYLdA2SMnukvwQHUdPVn9E,1389
|
|
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
|
-
seleniumbase/undetected/cdp_driver/browser.py,sha256=
|
|
120
|
+
seleniumbase/undetected/cdp_driver/browser.py,sha256=AQI6uWVyhv7VEnx0CE3V9MeoUa-VDilFPytnQile31Y,35651
|
|
121
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
|
|
@@ -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.
|
|
141
|
-
seleniumbase-4.
|
|
142
|
-
seleniumbase-4.
|
|
143
|
-
seleniumbase-4.
|
|
144
|
-
seleniumbase-4.
|
|
145
|
-
seleniumbase-4.
|
|
140
|
+
seleniumbase-4.43.0.dist-info/licenses/LICENSE,sha256=BRblZsX7HyPUjQmYTiyWr_e9tzWvmR3R4SFclM2R3W0,1085
|
|
141
|
+
seleniumbase-4.43.0.dist-info/METADATA,sha256=SlNtEsXjbxLxS0lyt1KHlN7LA2KpF2HPQiQYJlHcVMY,90229
|
|
142
|
+
seleniumbase-4.43.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
143
|
+
seleniumbase-4.43.0.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
|
144
|
+
seleniumbase-4.43.0.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
|
145
|
+
seleniumbase-4.43.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|