seleniumbase 4.32.3__py3-none-any.whl → 4.32.4__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- seleniumbase/__version__.py +1 -1
- seleniumbase/core/browser_launcher.py +1 -0
- seleniumbase/fixtures/base_case.py +2 -2
- seleniumbase/plugins/driver_manager.py +2 -2
- seleniumbase/undetected/__init__.py +13 -6
- seleniumbase/undetected/cdp.py +0 -1
- seleniumbase/undetected/cdp_driver/config.py +7 -0
- seleniumbase/undetected/cdp_driver/connection.py +9 -1
- seleniumbase/undetected/dprocess.py +0 -1
- seleniumbase/undetected/options.py +3 -2
- seleniumbase/undetected/patcher.py +0 -1
- seleniumbase/undetected/reactor.py +0 -1
- {seleniumbase-4.32.3.dist-info → seleniumbase-4.32.4.dist-info}/METADATA +48 -46
- {seleniumbase-4.32.3.dist-info → seleniumbase-4.32.4.dist-info}/RECORD +18 -18
- {seleniumbase-4.32.3.dist-info → seleniumbase-4.32.4.dist-info}/LICENSE +0 -0
- {seleniumbase-4.32.3.dist-info → seleniumbase-4.32.4.dist-info}/WHEEL +0 -0
- {seleniumbase-4.32.3.dist-info → seleniumbase-4.32.4.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.32.3.dist-info → seleniumbase-4.32.4.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# seleniumbase package
|
2
|
-
__version__ = "4.32.
|
2
|
+
__version__ = "4.32.4"
|
@@ -542,6 +542,7 @@ def uc_open_with_cdp_mode(driver, url=None):
|
|
542
542
|
driver.cdp_base = loop.run_until_complete(
|
543
543
|
cdp_util.start(host=cdp_host, port=cdp_port)
|
544
544
|
)
|
545
|
+
|
545
546
|
page = loop.run_until_complete(driver.cdp_base.get(url))
|
546
547
|
loop.run_until_complete(page.activate())
|
547
548
|
if not safe_url:
|
@@ -4167,13 +4167,13 @@ class BaseCase(unittest.TestCase):
|
|
4167
4167
|
device_pixel_ratio=d_p_r,
|
4168
4168
|
browser=browser_name,
|
4169
4169
|
)
|
4170
|
-
time.sleep(0.
|
4170
|
+
time.sleep(0.16)
|
4171
4171
|
except Exception:
|
4172
4172
|
pass
|
4173
4173
|
finally:
|
4174
4174
|
with suppress(Exception):
|
4175
4175
|
decoy_driver.quit()
|
4176
|
-
time.sleep(0.
|
4176
|
+
time.sleep(0.08)
|
4177
4177
|
# Launch a web browser
|
4178
4178
|
new_driver = browser_launcher.get_driver(
|
4179
4179
|
browser_name=browser_name,
|
@@ -870,13 +870,13 @@ def Driver(
|
|
870
870
|
device_pixel_ratio=d_p_r,
|
871
871
|
browser=browser_name,
|
872
872
|
)
|
873
|
-
time.sleep(0.
|
873
|
+
time.sleep(0.16)
|
874
874
|
except Exception:
|
875
875
|
pass
|
876
876
|
finally:
|
877
877
|
with suppress(Exception):
|
878
878
|
decoy_driver.quit()
|
879
|
-
time.sleep(0.
|
879
|
+
time.sleep(0.08)
|
880
880
|
|
881
881
|
driver = browser_launcher.get_driver(
|
882
882
|
browser_name=browser_name,
|
@@ -1,4 +1,3 @@
|
|
1
|
-
#!/usr/bin/env python3
|
2
1
|
import logging
|
3
2
|
import os
|
4
3
|
import re
|
@@ -433,10 +432,15 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
433
432
|
time.sleep(timeout)
|
434
433
|
with suppress(Exception):
|
435
434
|
self.service.start()
|
436
|
-
time.sleep(0.012)
|
437
435
|
with suppress(Exception):
|
438
436
|
self.start_session()
|
439
|
-
|
437
|
+
with suppress(Exception):
|
438
|
+
if self.current_url.startswith("chrome-extension://"):
|
439
|
+
self.close()
|
440
|
+
self.service.stop()
|
441
|
+
self.service.start()
|
442
|
+
self.start_session()
|
443
|
+
self._is_connected = True
|
440
444
|
|
441
445
|
def disconnect(self):
|
442
446
|
"""Stops the chromedriver service that runs in the background.
|
@@ -445,7 +449,6 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
445
449
|
with suppress(Exception):
|
446
450
|
self.service.stop()
|
447
451
|
self._is_connected = False
|
448
|
-
time.sleep(0.012)
|
449
452
|
|
450
453
|
def connect(self):
|
451
454
|
"""Starts the chromedriver service that runs in the background
|
@@ -453,11 +456,15 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
453
456
|
if hasattr(self, "service"):
|
454
457
|
with suppress(Exception):
|
455
458
|
self.service.start()
|
456
|
-
time.sleep(0.012)
|
457
459
|
with suppress(Exception):
|
458
460
|
self.start_session()
|
461
|
+
with suppress(Exception):
|
462
|
+
if self.current_url.startswith("chrome-extension://"):
|
463
|
+
self.close()
|
464
|
+
self.service.stop()
|
465
|
+
self.service.start()
|
466
|
+
self.start_session()
|
459
467
|
self._is_connected = True
|
460
|
-
time.sleep(0.012)
|
461
468
|
|
462
469
|
def start_session(self, capabilities=None):
|
463
470
|
if not capabilities:
|
seleniumbase/undetected/cdp.py
CHANGED
@@ -5,6 +5,7 @@ import secrets
|
|
5
5
|
import sys
|
6
6
|
import tempfile
|
7
7
|
import zipfile
|
8
|
+
from seleniumbase.config import settings
|
8
9
|
from typing import Union, List, Optional
|
9
10
|
|
10
11
|
__all__ = [
|
@@ -101,7 +102,13 @@ class Config:
|
|
101
102
|
# Other keyword args will be accessible by attribute
|
102
103
|
self.__dict__.update(kwargs)
|
103
104
|
super().__init__()
|
105
|
+
start_width = settings.CHROME_START_WIDTH
|
106
|
+
start_height = settings.CHROME_START_HEIGHT
|
107
|
+
start_x = settings.WINDOW_START_X
|
108
|
+
start_y = settings.WINDOW_START_Y
|
104
109
|
self._default_browser_args = [
|
110
|
+
"--window-size=%s,%s" % (start_width, start_height),
|
111
|
+
"--window-position=%s,%s" % (start_x, start_y),
|
105
112
|
"--remote-allow-origins=*",
|
106
113
|
"--no-first-run",
|
107
114
|
"--no-service-autorun",
|
@@ -292,7 +292,14 @@ class Connection(metaclass=CantTouchThis):
|
|
292
292
|
if self.listener and self.listener.running:
|
293
293
|
self.listener.cancel()
|
294
294
|
self.enabled_domains.clear()
|
295
|
-
await
|
295
|
+
await asyncio.sleep(0.015)
|
296
|
+
try:
|
297
|
+
await self.websocket.close()
|
298
|
+
except Exception:
|
299
|
+
logger.debug(
|
300
|
+
"\n❌ Error closing websocket connection to %s",
|
301
|
+
self.websocket_url
|
302
|
+
)
|
296
303
|
logger.debug(
|
297
304
|
"\n❌ Closed websocket connection to %s", self.websocket_url
|
298
305
|
)
|
@@ -540,6 +547,7 @@ class Listener:
|
|
540
547
|
self.idle.set()
|
541
548
|
# Pause for a moment.
|
542
549
|
# await asyncio.sleep(self.time_before_considered_idle / 10)
|
550
|
+
await asyncio.sleep(0.015)
|
543
551
|
continue
|
544
552
|
except (Exception,) as e:
|
545
553
|
logger.debug(
|
@@ -1,4 +1,3 @@
|
|
1
|
-
#!/usr/bin/env python3
|
2
1
|
import json
|
3
2
|
import os
|
4
3
|
from contextlib import suppress
|
@@ -59,7 +58,9 @@ class ChromeOptions(ChromiumOptions):
|
|
59
58
|
json.load(f), undot_prefs
|
60
59
|
)
|
61
60
|
with suppress(Exception):
|
62
|
-
with open(
|
61
|
+
with open(
|
62
|
+
prefs_file, encoding="utf-8", mode="w", errors="ignore"
|
63
|
+
) as f:
|
63
64
|
json.dump(undot_prefs, f)
|
64
65
|
# Remove experimental_options to avoid errors
|
65
66
|
del self._experimental_options["prefs"]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.32.
|
3
|
+
Version: 4.32.4
|
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
|
@@ -79,8 +79,8 @@ Requires-Dist: parse-type>=0.6.4
|
|
79
79
|
Requires-Dist: colorama>=0.4.6
|
80
80
|
Requires-Dist: pyyaml>=6.0.2
|
81
81
|
Requires-Dist: pygments>=2.18.0
|
82
|
-
Requires-Dist: tabcompleter>=1.
|
83
|
-
Requires-Dist: pdbp>=1.
|
82
|
+
Requires-Dist: tabcompleter>=1.4.0
|
83
|
+
Requires-Dist: pdbp>=1.6.0
|
84
84
|
Requires-Dist: idna==3.10
|
85
85
|
Requires-Dist: chardet==5.2.0
|
86
86
|
Requires-Dist: charset-normalizer==3.4.0
|
@@ -236,6 +236,8 @@ Requires-Dist: zstandard==0.23.0; extra == "selenium-wire"
|
|
236
236
|
|
237
237
|
👤 Note that <span translate="no">SeleniumBase</span> <a translate="no" href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/uc_mode.md"><b>UC Mode</b> (Stealth Mode) has its own ReadMe</a>.
|
238
238
|
|
239
|
+
🐙 Also note that Seleniumbase <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/cdp_mode/ReadMe.md"><b>CDP Mode</b> has its own separate ReadMe</a>.
|
240
|
+
|
239
241
|
ℹ️ Scripts can be called via <code translate="no"><b>python</b></code>, although some <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/syntax_formats.md">Syntax Formats</a> 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).
|
240
242
|
|
241
243
|
<p align="left">📗 Here's <a href="https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py">my_first_test.py</a>, which tests login, shopping, and checkout:</p>
|
@@ -489,48 +491,49 @@ pip install -e .
|
|
489
491
|
🔵 **Type ``seleniumbase`` or ``sbase`` to verify that SeleniumBase was installed successfully:**
|
490
492
|
|
491
493
|
```bash
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
COMMANDS:
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
494
|
+
___ _ _ ___
|
495
|
+
/ __| ___| |___ _ _ (_)_ _ _ __ | _ ) __ _ ______
|
496
|
+
\__ \/ -_) / -_) ' \| | \| | ' \ | _ \/ _` (_-< -_)
|
497
|
+
|___/\___|_\___|_||_|_|\_,_|_|_|_\|___/\__,_/__|___|
|
498
|
+
----------------------------------------------------
|
499
|
+
|
500
|
+
╭──────────────────────────────────────────────────╮
|
501
|
+
│ * USAGE: "seleniumbase [COMMAND] [PARAMETERS]" │
|
502
|
+
│ * OR: "sbase [COMMAND] [PARAMETERS]" │
|
503
|
+
│ │
|
504
|
+
│ COMMANDS: PARAMETERS / DESCRIPTIONS: │
|
505
|
+
│ get / install [DRIVER_NAME] [OPTIONS] │
|
506
|
+
│ methods (List common Python methods) │
|
507
|
+
│ options (List common pytest options) │
|
508
|
+
│ behave-options (List common behave options) │
|
509
|
+
│ gui / commander [OPTIONAL PATH or TEST FILE] │
|
510
|
+
│ behave-gui (SBase Commander for Behave) │
|
511
|
+
│ caseplans [OPTIONAL PATH or TEST FILE] │
|
512
|
+
│ mkdir [DIRECTORY] [OPTIONS] │
|
513
|
+
│ mkfile [FILE.py] [OPTIONS] │
|
514
|
+
│ mkrec / codegen [FILE.py] [OPTIONS] │
|
515
|
+
│ recorder (Open Recorder Desktop App.) │
|
516
|
+
│ record (If args: mkrec. Else: App.) │
|
517
|
+
│ mkpres [FILE.py] [LANG] │
|
518
|
+
│ mkchart [FILE.py] [LANG] │
|
519
|
+
│ print [FILE] [OPTIONS] │
|
520
|
+
│ translate [SB_FILE.py] [LANG] [ACTION] │
|
521
|
+
│ convert [WEBDRIVER_UNITTEST_FILE.py] │
|
522
|
+
│ extract-objects [SB_FILE.py] │
|
523
|
+
│ inject-objects [SB_FILE.py] [OPTIONS] │
|
524
|
+
│ objectify [SB_FILE.py] [OPTIONS] │
|
525
|
+
│ revert-objects [SB_FILE.py] [OPTIONS] │
|
526
|
+
│ encrypt / obfuscate │
|
527
|
+
│ decrypt / unobfuscate │
|
528
|
+
│ proxy (Start a basic proxy server) │
|
529
|
+
│ download server (Get Selenium Grid JAR file) │
|
530
|
+
│ grid-hub [start|stop] [OPTIONS] │
|
531
|
+
│ grid-node [start|stop] --hub=[HOST/IP] │
|
532
|
+
│ │
|
533
|
+
│ * EXAMPLE => "sbase get chromedriver stable" │
|
534
|
+
│ * For command info => "sbase help [COMMAND]" │
|
535
|
+
│ * For info on all commands => "sbase --help" │
|
536
|
+
╰──────────────────────────────────────────────────╯
|
534
537
|
```
|
535
538
|
|
536
539
|
<h3>🔵 Downloading webdrivers:</h3>
|
@@ -1549,7 +1552,6 @@ pytest --reruns=1 --reruns-delay=1
|
|
1549
1552
|
<span><a href="https://github.com/seleniumbase/SeleniumBase"><img src="https://seleniumbase.github.io/img/social/share_github.svg" title="SeleniumBase on GitHub" alt="SeleniumBase on GitHub" width="64" /></a></span>
|
1550
1553
|
<span><a href="https://discord.gg/EdhQTn3EyE"><img src="https://seleniumbase.github.io/other/discord_icon.png" title="SeleniumBase on Discord" alt="SeleniumBase on Discord" width="66" /></a></span>
|
1551
1554
|
<span><a href="https://www.facebook.com/SeleniumBase"><img src="https://seleniumbase.io/img/social/share_facebook.svg" title="SeleniumBase on Facebook" alt="SeleniumBase on Facebook" width="62" /></a></span>
|
1552
|
-
<span><a href="https://gitter.im/seleniumbase/SeleniumBase" target="_blank"><img src="https://seleniumbase.github.io/img/social/share_gitter.svg" title="SeleniumBase on Gitter" alt="SeleniumBase on Gitter" width="48" /></a></span>
|
1553
1555
|
</div></p>
|
1554
1556
|
|
1555
1557
|
<p><div><b><a href="https://github.com/mdmintz">https://github.com/mdmintz</a></b></div></p>
|
@@ -3,7 +3,7 @@ sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647
|
|
3
3
|
sbase/steps.py,sha256=bKT_u5bJkKzYWEuAXi9NVVRYYxQRCM1_YJUrNFFRVPY,42865
|
4
4
|
seleniumbase/__init__.py,sha256=OtJh8nGKL4xtZpw8KPqmn7Q6R-86t4cWUDyVF5MbMTo,2398
|
5
5
|
seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
|
6
|
-
seleniumbase/__version__.py,sha256=
|
6
|
+
seleniumbase/__version__.py,sha256=vFbcqGUbMcYFZy91jca1HA1X3Ls9oEd6VKZaewExcIA,46
|
7
7
|
seleniumbase/behave/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
seleniumbase/behave/behave_helper.py,sha256=elkl8P9eLulRAioLstE9baYNM9N_PHBmAOcajX-pH_Y,24198
|
9
9
|
seleniumbase/behave/behave_sb.py,sha256=-hza7Nx2U41mSObYiPMi48v3JlPh3sJO3yzP0kqZ1Gk,59174
|
@@ -36,7 +36,7 @@ seleniumbase/console_scripts/sb_print.py,sha256=tNy-bMDgwHJO3bZxMpmo9weSE8uhbH0C
|
|
36
36
|
seleniumbase/console_scripts/sb_recorder.py,sha256=1oAA4wFzVboNhIFDwJLD3jgy9RuoavywKQG7R67bNZE,10908
|
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=
|
39
|
+
seleniumbase/core/browser_launcher.py,sha256=xKKxAx2swUnFBpPcny-hk7KlaAnzCmCdw-tokh5ef04,214921
|
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
|
@@ -65,7 +65,7 @@ seleniumbase/extensions/disable_csp.zip,sha256=YMifIIgEBiLrEFrS1sfW4Exh4br1V4oK1
|
|
65
65
|
seleniumbase/extensions/recorder.zip,sha256=OOyzF-Ize2cSRu1CqhzSAq5vusI9hqLLd2OIApUHesI,11918
|
66
66
|
seleniumbase/extensions/sbase_ext.zip,sha256=3s1N8zrVaMz8RQEOIoBzC3KDjtmHwVZRvVsX25Odr_s,8175
|
67
67
|
seleniumbase/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
68
|
-
seleniumbase/fixtures/base_case.py,sha256=
|
68
|
+
seleniumbase/fixtures/base_case.py,sha256=oAnwLUFtg4inRq4I2xJEqAzkwyI2PHeNWm-UPnQXVks,714722
|
69
69
|
seleniumbase/fixtures/constants.py,sha256=XYYMpB-ZDI756LvfhSK9RxdqQ_qO9fJVXgBqBYlQNkk,13609
|
70
70
|
seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
|
71
71
|
seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
|
@@ -86,7 +86,7 @@ seleniumbase/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
86
86
|
seleniumbase/plugins/base_plugin.py,sha256=FemdftNhOaTfQIw5bWcJQPPPGQ3P0_sMEI_YYDuzZgU,14972
|
87
87
|
seleniumbase/plugins/basic_test_info.py,sha256=8ov6n417gPbqqvrlT4zrch7l2XcRt-GF2ny6rR9AMWk,2108
|
88
88
|
seleniumbase/plugins/db_reporting_plugin.py,sha256=En09qUCoojrk9-vbcnsoHdSELoGmag2GDIyu3jTiJas,7331
|
89
|
-
seleniumbase/plugins/driver_manager.py,sha256=
|
89
|
+
seleniumbase/plugins/driver_manager.py,sha256=05WK2mJMJJ2SDXgEv1WQJad5MqWCV4qIv5FnKhb985Y,37798
|
90
90
|
seleniumbase/plugins/page_source.py,sha256=loTnXxOj4kxEukuTZEiGyvKBhY3KDVDMnNlHHheTBDE,1889
|
91
91
|
seleniumbase/plugins/pytest_plugin.py,sha256=Up96HY6q3hcPo4LQoEcKqt1hm2OmY5GZz_nMXTqDSXQ,97185
|
92
92
|
seleniumbase/plugins/s3_logging_plugin.py,sha256=WDfertQgGOW_SRJpFMaekYD6vBVW9VO62POtXXy2HCM,2319
|
@@ -106,19 +106,19 @@ seleniumbase/translate/portuguese.py,sha256=x3P4qxp56UiI41GoaL7JbUvFRYsgXU1EKjTg
|
|
106
106
|
seleniumbase/translate/russian.py,sha256=TyN9n0b4GRWDEYnHRGw1rfNAscdDmP3F3Y3aySM3C7s,27978
|
107
107
|
seleniumbase/translate/spanish.py,sha256=hh3xgW1Pq122SHYVvJAxFaXhFrjniOVncVbJbfWqOUM,25528
|
108
108
|
seleniumbase/translate/translator.py,sha256=wPhZH6e5NhmebYL1kP2eGxUcVy1gfTb6XCH8ATEPpxE,49238
|
109
|
-
seleniumbase/undetected/__init__.py,sha256=
|
110
|
-
seleniumbase/undetected/cdp.py,sha256=
|
111
|
-
seleniumbase/undetected/dprocess.py,sha256=
|
112
|
-
seleniumbase/undetected/options.py,sha256=
|
113
|
-
seleniumbase/undetected/patcher.py,sha256=
|
114
|
-
seleniumbase/undetected/reactor.py,sha256=
|
109
|
+
seleniumbase/undetected/__init__.py,sha256=8zwqLzRffTOm7nFp6ldldthHVuYB2OnU6ZGV4JOpoio,22491
|
110
|
+
seleniumbase/undetected/cdp.py,sha256=RLpwZnhUvmK9tgXcZIBBQedwk2q7Jj_EXZkmzI8WUqk,4023
|
111
|
+
seleniumbase/undetected/dprocess.py,sha256=83EV8ZHJWHG1TSUv9JNClBhdgiBXlkCc6mJ--HsoP3k,1681
|
112
|
+
seleniumbase/undetected/options.py,sha256=BoNuwhrG7oOvuLvTwkvsWCF36pMkS1tHCG-XpP4_EkI,3001
|
113
|
+
seleniumbase/undetected/patcher.py,sha256=n9WfKznr4cQvaE5Gcx7iyK27zMWIc8KdI69_m817CSQ,10825
|
114
|
+
seleniumbase/undetected/reactor.py,sha256=NropaXcO54pzmDq6quR27qPJxab6636H7LRAaq-o0ng,2859
|
115
115
|
seleniumbase/undetected/webelement.py,sha256=_s6evgUkdWJpwOnzX4qR9i796PoVbz3txlzHlOBJ4BE,1370
|
116
116
|
seleniumbase/undetected/cdp_driver/__init__.py,sha256=c0TjMwPfVFyoqYOJ7PQ-Jln_L_dpN3ebHyaD-juQoM0,64
|
117
117
|
seleniumbase/undetected/cdp_driver/_contradict.py,sha256=6thDYeoEGiC7Q3tXLgoD_AhxecCFnATzBSjNympyRHA,3184
|
118
118
|
seleniumbase/undetected/cdp_driver/browser.py,sha256=2suM75F3TV-svgBXdRZoxfqErr6_USa8_jOLwHSLlIk,30025
|
119
119
|
seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=y60sU5rIguohZDl1tgCpuDhu3Wo6TcgvZIbqXdHIv8E,11111
|
120
|
-
seleniumbase/undetected/cdp_driver/config.py,sha256=
|
121
|
-
seleniumbase/undetected/cdp_driver/connection.py,sha256=
|
120
|
+
seleniumbase/undetected/cdp_driver/config.py,sha256=Rjvde7V-XJ0ihZdTmOmHEVWSuDWm3SprQ3njg8SN3Go,12087
|
121
|
+
seleniumbase/undetected/cdp_driver/connection.py,sha256=HnwXlD4rawGzCyiGR3Shr4iaK7KTncvSqs3CXxCZM_8,23266
|
122
122
|
seleniumbase/undetected/cdp_driver/element.py,sha256=9oD9GxguctunrlHV3lWXlZgb9cNEjD5x03Oy84OqyVA,39631
|
123
123
|
seleniumbase/undetected/cdp_driver/tab.py,sha256=wUNF8GHrbhaUqg57A9ZTYHKhNPjZIcOHwrz3pj1SAg0,50526
|
124
124
|
seleniumbase/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -135,9 +135,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.bat,sha256=Ftq-GrAKRYH2ssDPr
|
|
135
135
|
seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443QFK8PryBpDmKn5Gy0s4o0vDSM,106
|
136
136
|
seleniumbase/utilities/selenium_ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
137
|
seleniumbase/utilities/selenium_ide/convert_ide.py,sha256=pZFnqEJQEKZPyNFjkLD29s2HPQgCrWW9XJWpCPhWOoM,31691
|
138
|
-
seleniumbase-4.32.
|
139
|
-
seleniumbase-4.32.
|
140
|
-
seleniumbase-4.32.
|
141
|
-
seleniumbase-4.32.
|
142
|
-
seleniumbase-4.32.
|
143
|
-
seleniumbase-4.32.
|
138
|
+
seleniumbase-4.32.4.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
|
139
|
+
seleniumbase-4.32.4.dist-info/METADATA,sha256=P-aaLSxLcDhNervTnQwolcdOOYQTBgbvIwi7_LGKsgg,86271
|
140
|
+
seleniumbase-4.32.4.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
141
|
+
seleniumbase-4.32.4.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
142
|
+
seleniumbase-4.32.4.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
143
|
+
seleniumbase-4.32.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|