seleniumbase 4.32.4a4__py3-none-any.whl → 4.32.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.
- seleniumbase/__version__.py +1 -1
- seleniumbase/core/browser_launcher.py +38 -2
- seleniumbase/fixtures/base_case.py +0 -84
- seleniumbase/plugins/driver_manager.py +1 -89
- seleniumbase/undetected/__init__.py +16 -5
- seleniumbase/undetected/cdp_driver/browser.py +1 -1
- {seleniumbase-4.32.4a4.dist-info → seleniumbase-4.32.5.dist-info}/METADATA +2 -2
- {seleniumbase-4.32.4a4.dist-info → seleniumbase-4.32.5.dist-info}/RECORD +12 -12
- {seleniumbase-4.32.4a4.dist-info → seleniumbase-4.32.5.dist-info}/LICENSE +0 -0
- {seleniumbase-4.32.4a4.dist-info → seleniumbase-4.32.5.dist-info}/WHEEL +0 -0
- {seleniumbase-4.32.4a4.dist-info → seleniumbase-4.32.5.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.32.4a4.dist-info → seleniumbase-4.32.5.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.5"
|
@@ -542,7 +542,33 @@ 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
|
+
loop.run_until_complete(driver.cdp_base.wait(0))
|
545
546
|
|
547
|
+
if (
|
548
|
+
"chrome-extension://" in str(driver.cdp_base.main_tab)
|
549
|
+
and len(driver.cdp_base.tabs) >= 2
|
550
|
+
):
|
551
|
+
with suppress(Exception):
|
552
|
+
loop.run_until_complete(driver.cdp_base.main_tab.close())
|
553
|
+
|
554
|
+
for tab in driver.cdp_base.tabs[-1::-1]:
|
555
|
+
if "chrome-extension://" not in str(tab):
|
556
|
+
loop.run_until_complete(tab.activate())
|
557
|
+
break
|
558
|
+
|
559
|
+
page_tab = None
|
560
|
+
if "chrome-extension://" not in str(driver.cdp_base.tabs[-1]):
|
561
|
+
page_tab = driver.cdp_base.tabs[-1]
|
562
|
+
else:
|
563
|
+
for tab in driver.cdp_base.tabs:
|
564
|
+
if "chrome-extension://" not in str(tab):
|
565
|
+
page_tab = tab
|
566
|
+
break
|
567
|
+
if page_tab:
|
568
|
+
loop.run_until_complete(page_tab.aopen())
|
569
|
+
loop.run_until_complete(page_tab.activate())
|
570
|
+
|
571
|
+
loop.run_until_complete(driver.cdp_base.update_targets())
|
546
572
|
page = loop.run_until_complete(driver.cdp_base.get(url))
|
547
573
|
loop.run_until_complete(page.activate())
|
548
574
|
if not safe_url:
|
@@ -1106,13 +1132,23 @@ def _uc_gui_click_captcha(
|
|
1106
1132
|
frame = '[data-callback="onCaptchaSuccess"]'
|
1107
1133
|
else:
|
1108
1134
|
return
|
1109
|
-
if
|
1135
|
+
if (
|
1136
|
+
driver.is_element_present("form")
|
1137
|
+
and (
|
1138
|
+
driver.is_element_present('form[class*="center"]')
|
1139
|
+
or driver.is_element_present('form[class*="right"]')
|
1140
|
+
or driver.is_element_present('form div[class*="center"]')
|
1141
|
+
or driver.is_element_present('form div[class*="right"]')
|
1142
|
+
)
|
1143
|
+
):
|
1110
1144
|
script = (
|
1111
|
-
"""var $elements = document.querySelectorAll(
|
1145
|
+
"""var $elements = document.querySelectorAll(
|
1146
|
+
'form[class], form div[class]');
|
1112
1147
|
var index = 0, length = $elements.length;
|
1113
1148
|
for(; index < length; index++){
|
1114
1149
|
the_class = $elements[index].getAttribute('class');
|
1115
1150
|
new_class = the_class.replaceAll('center', 'left');
|
1151
|
+
new_class = new_class.replaceAll('right', 'left');
|
1116
1152
|
$elements[index].setAttribute('class', new_class);}"""
|
1117
1153
|
)
|
1118
1154
|
if __is_cdp_swap_needed(driver):
|
@@ -4090,90 +4090,6 @@ class BaseCase(unittest.TestCase):
|
|
4090
4090
|
"Browser: {%s} is not a valid browser option. "
|
4091
4091
|
"Valid options = {%s}" % (browser, valid_browsers)
|
4092
4092
|
)
|
4093
|
-
# Fix Chrome-130 issues by creating a user-data-dir in advance
|
4094
|
-
if (
|
4095
|
-
undetectable
|
4096
|
-
and (
|
4097
|
-
not user_data_dir
|
4098
|
-
or not os.path.exists(user_data_dir)
|
4099
|
-
or not any(os.scandir(user_data_dir))
|
4100
|
-
)
|
4101
|
-
and self.browser == "chrome"
|
4102
|
-
and shared_utils.is_chrome_130_or_newer(binary_location)
|
4103
|
-
):
|
4104
|
-
import tempfile
|
4105
|
-
if not user_data_dir:
|
4106
|
-
user_data_dir = os.path.normpath(tempfile.mkdtemp())
|
4107
|
-
self.user_data_dir = user_data_dir
|
4108
|
-
sb_config.user_data_dir = user_data_dir
|
4109
|
-
try:
|
4110
|
-
decoy_driver = browser_launcher.get_driver(
|
4111
|
-
browser_name=browser_name,
|
4112
|
-
headless=False,
|
4113
|
-
locale_code=locale_code,
|
4114
|
-
use_grid=use_grid,
|
4115
|
-
protocol=protocol,
|
4116
|
-
servername=servername,
|
4117
|
-
port=port,
|
4118
|
-
proxy_string=proxy_string,
|
4119
|
-
proxy_bypass_list=proxy_bypass_list,
|
4120
|
-
proxy_pac_url=proxy_pac_url,
|
4121
|
-
multi_proxy=multi_proxy,
|
4122
|
-
user_agent=user_agent,
|
4123
|
-
cap_file=cap_file,
|
4124
|
-
cap_string=cap_string,
|
4125
|
-
recorder_ext=recorder_ext,
|
4126
|
-
disable_cookies=disable_cookies,
|
4127
|
-
disable_js=disable_js,
|
4128
|
-
disable_csp=disable_csp,
|
4129
|
-
enable_ws=enable_ws,
|
4130
|
-
enable_sync=enable_sync,
|
4131
|
-
use_auto_ext=use_auto_ext,
|
4132
|
-
undetectable=undetectable,
|
4133
|
-
uc_cdp_events=uc_cdp_events,
|
4134
|
-
uc_subprocess=uc_subprocess,
|
4135
|
-
log_cdp_events=log_cdp_events,
|
4136
|
-
no_sandbox=no_sandbox,
|
4137
|
-
disable_gpu=disable_gpu,
|
4138
|
-
headless1=False,
|
4139
|
-
headless2=True,
|
4140
|
-
incognito=incognito,
|
4141
|
-
guest_mode=guest_mode,
|
4142
|
-
dark_mode=dark_mode,
|
4143
|
-
devtools=devtools,
|
4144
|
-
remote_debug=remote_debug,
|
4145
|
-
enable_3d_apis=enable_3d_apis,
|
4146
|
-
swiftshader=swiftshader,
|
4147
|
-
ad_block_on=ad_block_on,
|
4148
|
-
host_resolver_rules=host_resolver_rules,
|
4149
|
-
block_images=block_images,
|
4150
|
-
do_not_track=do_not_track,
|
4151
|
-
chromium_arg="decoy",
|
4152
|
-
firefox_arg=firefox_arg,
|
4153
|
-
firefox_pref=firefox_pref,
|
4154
|
-
user_data_dir=user_data_dir,
|
4155
|
-
extension_zip=None,
|
4156
|
-
extension_dir=None,
|
4157
|
-
disable_features=disable_features,
|
4158
|
-
binary_location=binary_location,
|
4159
|
-
driver_version=driver_version,
|
4160
|
-
page_load_strategy=page_load_strategy,
|
4161
|
-
use_wire=use_wire,
|
4162
|
-
external_pdf=external_pdf,
|
4163
|
-
test_id=test_id,
|
4164
|
-
mobile_emulator=is_mobile,
|
4165
|
-
device_width=d_width,
|
4166
|
-
device_height=d_height,
|
4167
|
-
device_pixel_ratio=d_p_r,
|
4168
|
-
browser=browser_name,
|
4169
|
-
)
|
4170
|
-
time.sleep(0.16)
|
4171
|
-
except Exception:
|
4172
|
-
pass
|
4173
|
-
finally:
|
4174
|
-
with suppress(Exception):
|
4175
|
-
decoy_driver.quit()
|
4176
|
-
time.sleep(0.08)
|
4177
4093
|
# Launch a web browser
|
4178
4094
|
new_driver = browser_launcher.get_driver(
|
4179
4095
|
browser_name=browser_name,
|
@@ -233,9 +233,9 @@ def Driver(
|
|
233
233
|
wire (bool): Shortcut / Duplicate of "use_wire".
|
234
234
|
pls (str): Shortcut / Duplicate of "page_load_strategy".
|
235
235
|
"""
|
236
|
-
from contextlib import suppress
|
237
236
|
from seleniumbase import config as sb_config
|
238
237
|
from seleniumbase.config import settings
|
238
|
+
from seleniumbase.core import browser_launcher
|
239
239
|
from seleniumbase.fixtures import constants
|
240
240
|
from seleniumbase.fixtures import shared_utils
|
241
241
|
|
@@ -790,94 +790,6 @@ def Driver(
|
|
790
790
|
browser_name = browser
|
791
791
|
|
792
792
|
# Launch a web browser
|
793
|
-
from seleniumbase.core import browser_launcher
|
794
|
-
|
795
|
-
# Fix Chrome-130 issues by creating a user-data-dir in advance
|
796
|
-
if (
|
797
|
-
undetectable
|
798
|
-
and (
|
799
|
-
not user_data_dir
|
800
|
-
or not os.path.exists(user_data_dir)
|
801
|
-
or not any(os.scandir(user_data_dir))
|
802
|
-
)
|
803
|
-
and browser == "chrome"
|
804
|
-
and shared_utils.is_chrome_130_or_newer(binary_location)
|
805
|
-
):
|
806
|
-
import tempfile
|
807
|
-
import time
|
808
|
-
if not user_data_dir:
|
809
|
-
user_data_dir = (
|
810
|
-
os.path.normpath(tempfile.mkdtemp())
|
811
|
-
)
|
812
|
-
try:
|
813
|
-
decoy_driver = browser_launcher.get_driver(
|
814
|
-
browser_name=browser_name,
|
815
|
-
headless=False,
|
816
|
-
locale_code=locale_code,
|
817
|
-
use_grid=use_grid,
|
818
|
-
protocol=protocol,
|
819
|
-
servername=servername,
|
820
|
-
port=port,
|
821
|
-
proxy_string=proxy_string,
|
822
|
-
proxy_bypass_list=proxy_bypass_list,
|
823
|
-
proxy_pac_url=proxy_pac_url,
|
824
|
-
multi_proxy=multi_proxy,
|
825
|
-
user_agent=user_agent,
|
826
|
-
cap_file=cap_file,
|
827
|
-
cap_string=cap_string,
|
828
|
-
recorder_ext=recorder_ext,
|
829
|
-
disable_cookies=disable_cookies,
|
830
|
-
disable_js=disable_js,
|
831
|
-
disable_csp=disable_csp,
|
832
|
-
enable_ws=enable_ws,
|
833
|
-
enable_sync=enable_sync,
|
834
|
-
use_auto_ext=use_auto_ext,
|
835
|
-
undetectable=undetectable,
|
836
|
-
uc_cdp_events=uc_cdp_events,
|
837
|
-
uc_subprocess=uc_subprocess,
|
838
|
-
log_cdp_events=log_cdp_events,
|
839
|
-
no_sandbox=no_sandbox,
|
840
|
-
disable_gpu=disable_gpu,
|
841
|
-
headless1=False,
|
842
|
-
headless2=True,
|
843
|
-
incognito=incognito,
|
844
|
-
guest_mode=guest_mode,
|
845
|
-
dark_mode=dark_mode,
|
846
|
-
devtools=devtools,
|
847
|
-
remote_debug=remote_debug,
|
848
|
-
enable_3d_apis=enable_3d_apis,
|
849
|
-
swiftshader=swiftshader,
|
850
|
-
ad_block_on=ad_block_on,
|
851
|
-
host_resolver_rules=host_resolver_rules,
|
852
|
-
block_images=block_images,
|
853
|
-
do_not_track=do_not_track,
|
854
|
-
chromium_arg="decoy",
|
855
|
-
firefox_arg=firefox_arg,
|
856
|
-
firefox_pref=firefox_pref,
|
857
|
-
user_data_dir=user_data_dir,
|
858
|
-
extension_zip=None,
|
859
|
-
extension_dir=None,
|
860
|
-
disable_features=disable_features,
|
861
|
-
binary_location=binary_location,
|
862
|
-
driver_version=driver_version,
|
863
|
-
page_load_strategy=page_load_strategy,
|
864
|
-
use_wire=use_wire,
|
865
|
-
external_pdf=external_pdf,
|
866
|
-
test_id=test_id,
|
867
|
-
mobile_emulator=is_mobile,
|
868
|
-
device_width=d_width,
|
869
|
-
device_height=d_height,
|
870
|
-
device_pixel_ratio=d_p_r,
|
871
|
-
browser=browser_name,
|
872
|
-
)
|
873
|
-
time.sleep(0.16)
|
874
|
-
except Exception:
|
875
|
-
pass
|
876
|
-
finally:
|
877
|
-
with suppress(Exception):
|
878
|
-
decoy_driver.quit()
|
879
|
-
time.sleep(0.08)
|
880
|
-
|
881
793
|
driver = browser_launcher.get_driver(
|
882
794
|
browser_name=browser_name,
|
883
795
|
headless=headless,
|
@@ -235,6 +235,7 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
235
235
|
"--no-first-run",
|
236
236
|
"--no-service-autorun",
|
237
237
|
"--password-store=basic",
|
238
|
+
"--profile-directory=Default",
|
238
239
|
]
|
239
240
|
)
|
240
241
|
options.add_argument(
|
@@ -423,7 +424,9 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
423
424
|
- Recreates the session."""
|
424
425
|
if hasattr(self, "service"):
|
425
426
|
with suppress(Exception):
|
426
|
-
self.service.
|
427
|
+
if self.service.is_connectable():
|
428
|
+
self.stop_client()
|
429
|
+
self.service.stop()
|
427
430
|
if isinstance(timeout, str):
|
428
431
|
if timeout.lower() == "breakpoint":
|
429
432
|
breakpoint() # To continue:
|
@@ -437,7 +440,9 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
437
440
|
with suppress(Exception):
|
438
441
|
if self.current_url.startswith("chrome-extension://"):
|
439
442
|
self.close()
|
440
|
-
self.service.
|
443
|
+
if self.service.is_connectable():
|
444
|
+
self.stop_client()
|
445
|
+
self.service.stop()
|
441
446
|
self.service.start()
|
442
447
|
self.start_session()
|
443
448
|
self._is_connected = True
|
@@ -447,7 +452,9 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
447
452
|
To use driver methods again, you MUST call driver.connect()"""
|
448
453
|
if hasattr(self, "service"):
|
449
454
|
with suppress(Exception):
|
450
|
-
self.service.
|
455
|
+
if self.service.is_connectable():
|
456
|
+
self.stop_client()
|
457
|
+
self.service.stop()
|
451
458
|
self._is_connected = False
|
452
459
|
|
453
460
|
def connect(self):
|
@@ -461,7 +468,9 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
461
468
|
with suppress(Exception):
|
462
469
|
if self.current_url.startswith("chrome-extension://"):
|
463
470
|
self.close()
|
464
|
-
self.service.
|
471
|
+
if self.service.is_connectable():
|
472
|
+
self.stop_client()
|
473
|
+
self.service.stop()
|
465
474
|
self.service.start()
|
466
475
|
self.start_session()
|
467
476
|
self._is_connected = True
|
@@ -488,7 +497,9 @@ class Chrome(selenium.webdriver.chrome.webdriver.WebDriver):
|
|
488
497
|
pass
|
489
498
|
if hasattr(self, "service") and getattr(self.service, "process", None):
|
490
499
|
logger.debug("Stopping webdriver service")
|
491
|
-
|
500
|
+
with suppress(Exception):
|
501
|
+
self.stop_client()
|
502
|
+
self.service.stop()
|
492
503
|
with suppress(Exception):
|
493
504
|
if self.reactor and isinstance(self.reactor, Reactor):
|
494
505
|
logger.debug("Shutting down Reactor")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.32.
|
3
|
+
Version: 4.32.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
|
@@ -59,7 +59,7 @@ Classifier: Topic :: Utilities
|
|
59
59
|
Requires-Python: >=3.8
|
60
60
|
Description-Content-Type: text/markdown
|
61
61
|
License-File: LICENSE
|
62
|
-
Requires-Dist: pip>=24.
|
62
|
+
Requires-Dist: pip>=24.2
|
63
63
|
Requires-Dist: packaging>=24.1
|
64
64
|
Requires-Dist: wheel>=0.44.0
|
65
65
|
Requires-Dist: attrs>=24.2.0
|
@@ -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=xAtpJDjUnKgqYsRZ0M69t7TZEHxOCuPdobGLqmv1Sfo,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=_MO6_dGX7vMZJnrqbnGAJg00M1xqYq9Nawpe9_puiXU,216371
|
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=ChVH_uQqjXwTHI9Q7V17Wixdc75KIEFz-E70Eu871Es,711157
|
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=0W87pKdZpoBxq1xnWthgqZAdjlEhwMR4LgntrzsTd9M,34575
|
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,7 +106,7 @@ 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=
|
109
|
+
seleniumbase/undetected/__init__.py,sha256=yBUsi4T79yUVxg9yKuDdjeCP85tMiaVBpjarTniBDTQ,23002
|
110
110
|
seleniumbase/undetected/cdp.py,sha256=RLpwZnhUvmK9tgXcZIBBQedwk2q7Jj_EXZkmzI8WUqk,4023
|
111
111
|
seleniumbase/undetected/dprocess.py,sha256=83EV8ZHJWHG1TSUv9JNClBhdgiBXlkCc6mJ--HsoP3k,1681
|
112
112
|
seleniumbase/undetected/options.py,sha256=BoNuwhrG7oOvuLvTwkvsWCF36pMkS1tHCG-XpP4_EkI,3001
|
@@ -115,7 +115,7 @@ seleniumbase/undetected/reactor.py,sha256=NropaXcO54pzmDq6quR27qPJxab6636H7LRAaq
|
|
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
|
-
seleniumbase/undetected/cdp_driver/browser.py,sha256=
|
118
|
+
seleniumbase/undetected/cdp_driver/browser.py,sha256=mGmpWuR206yYJoBPTNslru8CbEpQuvvIHdjBylSkoKg,30020
|
119
119
|
seleniumbase/undetected/cdp_driver/cdp_util.py,sha256=y60sU5rIguohZDl1tgCpuDhu3Wo6TcgvZIbqXdHIv8E,11111
|
120
120
|
seleniumbase/undetected/cdp_driver/config.py,sha256=Rjvde7V-XJ0ihZdTmOmHEVWSuDWm3SprQ3njg8SN3Go,12087
|
121
121
|
seleniumbase/undetected/cdp_driver/connection.py,sha256=HnwXlD4rawGzCyiGR3Shr4iaK7KTncvSqs3CXxCZM_8,23266
|
@@ -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.5.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
|
139
|
+
seleniumbase-4.32.5.dist-info/METADATA,sha256=ombvYvc9SLH9eGfa24h9kAZ-_moKUYEhjOju_EvSfDo,86271
|
140
|
+
seleniumbase-4.32.5.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
141
|
+
seleniumbase-4.32.5.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
142
|
+
seleniumbase-4.32.5.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
143
|
+
seleniumbase-4.32.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|