seleniumbase 4.31.3__py3-none-any.whl → 4.31.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/__init__.py +14 -6
- seleniumbase/__version__.py +1 -1
- seleniumbase/behave/behave_sb.py +4 -12
- seleniumbase/console_scripts/logo_helper.py +0 -8
- seleniumbase/console_scripts/run.py +330 -341
- seleniumbase/console_scripts/sb_behave_gui.py +0 -7
- seleniumbase/console_scripts/sb_caseplans.py +0 -7
- seleniumbase/console_scripts/sb_commander.py +0 -7
- seleniumbase/console_scripts/sb_install.py +47 -47
- seleniumbase/console_scripts/sb_mkchart.py +13 -20
- seleniumbase/console_scripts/sb_mkdir.py +9 -16
- seleniumbase/console_scripts/sb_mkfile.py +27 -34
- seleniumbase/console_scripts/sb_mkpres.py +13 -20
- seleniumbase/console_scripts/sb_mkrec.py +12 -19
- seleniumbase/console_scripts/sb_objectify.py +30 -30
- seleniumbase/console_scripts/sb_print.py +5 -12
- seleniumbase/console_scripts/sb_recorder.py +0 -7
- seleniumbase/fixtures/base_case.py +6 -8
- seleniumbase/plugins/driver_manager.py +17 -1
- seleniumbase/plugins/pytest_plugin.py +1 -8
- seleniumbase/plugins/sb_manager.py +19 -7
- seleniumbase/plugins/selenium_plugin.py +1 -0
- seleniumbase/translate/translator.py +0 -7
- {seleniumbase-4.31.3.dist-info → seleniumbase-4.31.5.dist-info}/METADATA +3 -3
- {seleniumbase-4.31.3.dist-info → seleniumbase-4.31.5.dist-info}/RECORD +29 -29
- {seleniumbase-4.31.3.dist-info → seleniumbase-4.31.5.dist-info}/LICENSE +0 -0
- {seleniumbase-4.31.3.dist-info → seleniumbase-4.31.5.dist-info}/WHEEL +0 -0
- {seleniumbase-4.31.3.dist-info → seleniumbase-4.31.5.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.31.3.dist-info → seleniumbase-4.31.5.dist-info}/top_level.txt +0 -0
@@ -14500,15 +14500,13 @@ class BaseCase(unittest.TestCase):
|
|
14500
14500
|
self.__skip_reason = None
|
14501
14501
|
self.testcase_manager.insert_testcase_data(data_payload)
|
14502
14502
|
self.case_start_time = int(time.time() * 1000.0)
|
14503
|
-
self.__activate_virtual_display_as_needed()
|
14504
14503
|
elif hasattr(self, "is_behave") and self.is_behave:
|
14505
14504
|
self.__initialize_variables()
|
14506
|
-
self.__activate_virtual_display_as_needed()
|
14507
14505
|
elif hasattr(self, "is_nosetest") and self.is_nosetest:
|
14508
14506
|
pass # Setup performed in plugins for pynose
|
14509
14507
|
else:
|
14510
|
-
# Pure Python run. Eg. SB()
|
14511
|
-
|
14508
|
+
# Pure Python run. (Eg. SB() and Driver() Managers)
|
14509
|
+
pass # Variables initialized in respective plugins
|
14512
14510
|
|
14513
14511
|
# Verify SeleniumBase is installed successfully, and used correctly
|
14514
14512
|
if not hasattr(self, "browser"):
|
@@ -14696,6 +14694,10 @@ class BaseCase(unittest.TestCase):
|
|
14696
14694
|
)
|
14697
14695
|
raise Exception(message)
|
14698
14696
|
|
14697
|
+
if not hasattr(self, "is_nosetest") or not self.is_nosetest:
|
14698
|
+
# Xvfb Virtual Display activation for Linux
|
14699
|
+
self.__activate_virtual_display_as_needed()
|
14700
|
+
|
14699
14701
|
# Dashboard pre-processing:
|
14700
14702
|
if self.dashboard:
|
14701
14703
|
if self._multithreaded:
|
@@ -16110,8 +16112,6 @@ class BaseCase(unittest.TestCase):
|
|
16110
16112
|
if is_windows:
|
16111
16113
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTRED_EX
|
16112
16114
|
cr = colorama.Style.RESET_ALL
|
16113
|
-
if hasattr(colorama, "just_fix_windows_console"):
|
16114
|
-
colorama.just_fix_windows_console()
|
16115
16115
|
msg = msg.replace("❌", c1 + "><" + cr)
|
16116
16116
|
print(msg)
|
16117
16117
|
else:
|
@@ -16119,8 +16119,6 @@ class BaseCase(unittest.TestCase):
|
|
16119
16119
|
if is_windows:
|
16120
16120
|
c2 = colorama.Fore.GREEN + colorama.Back.LIGHTGREEN_EX
|
16121
16121
|
cr = colorama.Style.RESET_ALL
|
16122
|
-
if hasattr(colorama, "just_fix_windows_console"):
|
16123
|
-
colorama.just_fix_windows_console()
|
16124
16122
|
msg = msg.replace("✅", c2 + "<>" + cr)
|
16125
16123
|
print(msg)
|
16126
16124
|
if self.dashboard:
|
@@ -620,8 +620,24 @@ def Driver(
|
|
620
620
|
elif browser not in ["chrome", "edge"]:
|
621
621
|
headless2 = False # Only for Chromium browsers
|
622
622
|
if disable_csp is None:
|
623
|
-
|
623
|
+
if (
|
624
|
+
"--disable-csp" in sys_argv
|
625
|
+
or "--no-csp" in sys_argv
|
626
|
+
or "--dcsp" in sys_argv
|
627
|
+
):
|
628
|
+
disable_csp = True
|
629
|
+
else:
|
630
|
+
disable_csp = False
|
624
631
|
if (
|
632
|
+
(enable_ws is None and disable_ws is None)
|
633
|
+
and (
|
634
|
+
"--disable-web-security" in sys_argv
|
635
|
+
or "--disable-ws" in sys_argv
|
636
|
+
or "--dws" in sys_argv
|
637
|
+
)
|
638
|
+
):
|
639
|
+
enable_ws = False
|
640
|
+
elif (
|
625
641
|
(enable_ws is None and disable_ws is None)
|
626
642
|
or (disable_ws is not None and not disable_ws)
|
627
643
|
or (enable_ws is not None and enable_ws)
|
@@ -130,10 +130,6 @@ def pytest_addoption(parser):
|
|
130
130
|
cr = ""
|
131
131
|
if "linux" not in sys.platform:
|
132
132
|
# This will be seen when typing "pytest --help" on the command line.
|
133
|
-
if is_windows and hasattr(colorama, "just_fix_windows_console"):
|
134
|
-
colorama.just_fix_windows_console()
|
135
|
-
else:
|
136
|
-
colorama.init(autoreset=True)
|
137
133
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
138
134
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
139
135
|
c3 = colorama.Fore.MAGENTA + colorama.Back.LIGHTYELLOW_EX
|
@@ -1021,6 +1017,7 @@ def pytest_addoption(parser):
|
|
1021
1017
|
parser.addoption(
|
1022
1018
|
"--disable_ws",
|
1023
1019
|
"--disable-ws",
|
1020
|
+
"--dws",
|
1024
1021
|
"--disable-web-security",
|
1025
1022
|
action="store_true",
|
1026
1023
|
dest="disable_ws",
|
@@ -1956,10 +1953,6 @@ def pytest_collection_finish(session):
|
|
1956
1953
|
c1 = ""
|
1957
1954
|
cr = ""
|
1958
1955
|
if "linux" not in sys.platform:
|
1959
|
-
if is_windows and hasattr(colorama, "just_fix_windows_console"):
|
1960
|
-
colorama.just_fix_windows_console()
|
1961
|
-
else:
|
1962
|
-
colorama.init(autoreset=True)
|
1963
1956
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
1964
1957
|
cr = colorama.Style.RESET_ALL
|
1965
1958
|
if sb_config._multithreaded:
|
@@ -249,6 +249,7 @@ def SB(
|
|
249
249
|
interval (float): SECONDS (Autoplay interval for SB Slides & Tour steps.)
|
250
250
|
time_limit (float): SECONDS (Safely fail tests that exceed the time limit)
|
251
251
|
"""
|
252
|
+
import colorama
|
252
253
|
import os
|
253
254
|
import sys
|
254
255
|
import time
|
@@ -261,7 +262,6 @@ def SB(
|
|
261
262
|
|
262
263
|
sb_config_backup = sb_config
|
263
264
|
sb_config._do_sb_post_mortem = False
|
264
|
-
is_windows = shared_utils.is_windows()
|
265
265
|
sys_argv = sys.argv
|
266
266
|
arg_join = " ".join(sys_argv)
|
267
267
|
archive_logs = False
|
@@ -711,8 +711,25 @@ def SB(
|
|
711
711
|
else:
|
712
712
|
variables = {}
|
713
713
|
if disable_csp is None:
|
714
|
-
|
714
|
+
if (
|
715
|
+
"--disable-csp" in sys_argv
|
716
|
+
or "--no-csp" in sys_argv
|
717
|
+
or "--dcsp" in sys_argv
|
718
|
+
):
|
719
|
+
disable_csp = True
|
720
|
+
else:
|
721
|
+
disable_csp = False
|
715
722
|
if (
|
723
|
+
(enable_ws is None and disable_ws is None)
|
724
|
+
and (
|
725
|
+
"--disable-web-security" in sys_argv
|
726
|
+
or "--disable-ws" in sys_argv
|
727
|
+
or "--dws" in sys_argv
|
728
|
+
)
|
729
|
+
):
|
730
|
+
enable_ws = False
|
731
|
+
disable_ws = True
|
732
|
+
elif (
|
716
733
|
(enable_ws is None and disable_ws is None)
|
717
734
|
or (disable_ws is not None and not disable_ws)
|
718
735
|
or (enable_ws is not None and enable_ws)
|
@@ -1152,11 +1169,6 @@ def SB(
|
|
1152
1169
|
test_name = None
|
1153
1170
|
terminal_width = shared_utils.get_terminal_width()
|
1154
1171
|
if test:
|
1155
|
-
import colorama
|
1156
|
-
if is_windows and hasattr(colorama, "just_fix_windows_console"):
|
1157
|
-
colorama.just_fix_windows_console()
|
1158
|
-
else:
|
1159
|
-
colorama.init(autoreset=True)
|
1160
1172
|
c1 = colorama.Fore.GREEN
|
1161
1173
|
b1 = colorama.Style.BRIGHT
|
1162
1174
|
cr = colorama.Style.RESET_ALL
|
@@ -267,13 +267,6 @@ def process_test_file(code_lines, new_lang):
|
|
267
267
|
|
268
268
|
|
269
269
|
def main():
|
270
|
-
if (
|
271
|
-
"win32" in sys.platform
|
272
|
-
and hasattr(colorama, "just_fix_windows_console")
|
273
|
-
):
|
274
|
-
colorama.just_fix_windows_console()
|
275
|
-
else:
|
276
|
-
colorama.init(autoreset=True)
|
277
270
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
278
271
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX
|
279
272
|
c3 = colorama.Fore.RED + colorama.Back.LIGHTGREEN_EX
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: seleniumbase
|
3
|
-
Version: 4.31.
|
3
|
+
Version: 4.31.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
|
@@ -73,7 +73,7 @@ Requires-Dist: typing-extensions>=4.12.2
|
|
73
73
|
Requires-Dist: sbvirtualdisplay>=1.3.0
|
74
74
|
Requires-Dist: six>=1.16.0
|
75
75
|
Requires-Dist: parse>=1.20.2
|
76
|
-
Requires-Dist: parse-type>=0.6.
|
76
|
+
Requires-Dist: parse-type>=0.6.4
|
77
77
|
Requires-Dist: colorama>=0.4.6
|
78
78
|
Requires-Dist: pyyaml>=6.0.2
|
79
79
|
Requires-Dist: pygments>=2.18.0
|
@@ -110,7 +110,7 @@ Requires-Dist: beautifulsoup4==4.12.3
|
|
110
110
|
Requires-Dist: pyotp==2.9.0
|
111
111
|
Requires-Dist: markdown-it-py==3.0.0
|
112
112
|
Requires-Dist: mdurl==0.1.2
|
113
|
-
Requires-Dist: rich==13.9.
|
113
|
+
Requires-Dist: rich==13.9.2
|
114
114
|
Requires-Dist: python-xlib==0.33; platform_system == "Linux"
|
115
115
|
Requires-Dist: pyreadline3>=3.5.3; platform_system == "Windows"
|
116
116
|
Requires-Dist: setuptools~=70.2; python_version < "3.10"
|
@@ -1,12 +1,12 @@
|
|
1
1
|
sbase/__init__.py,sha256=02izDj786GVBT0bpSq2Q2O8uwSxtyT09pnobZz91ML8,605
|
2
2
|
sbase/__main__.py,sha256=G0bVB1-DM4PGwQ1KyOupaWCs4ePbChZNNWuX2htim5U,647
|
3
3
|
sbase/steps.py,sha256=bKT_u5bJkKzYWEuAXi9NVVRYYxQRCM1_YJUrNFFRVPY,42865
|
4
|
-
seleniumbase/__init__.py,sha256=
|
4
|
+
seleniumbase/__init__.py,sha256=cDtPXK0sL3YbyYYy8sFPDBbOE1Y8xYSt4YSRw2LWcI0,2522
|
5
5
|
seleniumbase/__main__.py,sha256=dn1p6dgCchmcH1zzTzzQvFwwdQQqnTGH6ULV9m4hv24,654
|
6
|
-
seleniumbase/__version__.py,sha256=
|
6
|
+
seleniumbase/__version__.py,sha256=5cQcs6cs1RPcJ3PsrhLv27rKZjPGJsgMAXL4xk7tsZM,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
|
-
seleniumbase/behave/behave_sb.py,sha256
|
9
|
+
seleniumbase/behave/behave_sb.py,sha256=-hza7Nx2U41mSObYiPMi48v3JlPh3sJO3yzP0kqZ1Gk,59174
|
10
10
|
seleniumbase/behave/steps.py,sha256=8-N-NB2tnDsxaP4LSg-uSBgbwZYMS6ZEL1oggO1PCoU,390
|
11
11
|
seleniumbase/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
12
|
seleniumbase/common/decorators.py,sha256=LJnAgg0RG3kDOFb8tpyq1zjmpv9ks6Tjg8GwgIn1YuY,7633
|
@@ -19,21 +19,21 @@ seleniumbase/config/ad_block_list.py,sha256=qCQvbpONdSXk6q5tMwLuOswGYE1Syd8cy5TM
|
|
19
19
|
seleniumbase/config/proxy_list.py,sha256=tSdk82_6pPqClotHMl3YOTlxi9IIEppHmCoQDkZXLqw,1123
|
20
20
|
seleniumbase/config/settings.py,sha256=cAMmoFBQ6g8GCJIsRsSwGsP1_fJxhADxjHq30lFB18g,7815
|
21
21
|
seleniumbase/console_scripts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
seleniumbase/console_scripts/logo_helper.py,sha256=
|
22
|
+
seleniumbase/console_scripts/logo_helper.py,sha256=ZqS9TAwpcu5mM5ll-a0wTbXLs2Sbcsyo3EoC4jwtnME,2927
|
23
23
|
seleniumbase/console_scripts/rich_helper.py,sha256=U_zvXpalxVV8rtg8c8EnNNmnh45tii3AV5ZV3O3KbGA,2234
|
24
|
-
seleniumbase/console_scripts/run.py,sha256=
|
25
|
-
seleniumbase/console_scripts/sb_behave_gui.py,sha256=
|
26
|
-
seleniumbase/console_scripts/sb_caseplans.py,sha256=
|
27
|
-
seleniumbase/console_scripts/sb_commander.py,sha256=
|
28
|
-
seleniumbase/console_scripts/sb_install.py,sha256=
|
29
|
-
seleniumbase/console_scripts/sb_mkchart.py,sha256=
|
30
|
-
seleniumbase/console_scripts/sb_mkdir.py,sha256
|
31
|
-
seleniumbase/console_scripts/sb_mkfile.py,sha256=
|
32
|
-
seleniumbase/console_scripts/sb_mkpres.py,sha256=
|
33
|
-
seleniumbase/console_scripts/sb_mkrec.py,sha256=
|
34
|
-
seleniumbase/console_scripts/sb_objectify.py,sha256=
|
35
|
-
seleniumbase/console_scripts/sb_print.py,sha256=
|
36
|
-
seleniumbase/console_scripts/sb_recorder.py,sha256=
|
24
|
+
seleniumbase/console_scripts/run.py,sha256=8S2vmMPXtv-lztSbY7WqlqZLb1qvppxmSi9duPtVMoI,58216
|
25
|
+
seleniumbase/console_scripts/sb_behave_gui.py,sha256=3Zl7_QQczvkkQW_UuaqYEUlEjiZ6AJzHR9GeNyVVXkc,15147
|
26
|
+
seleniumbase/console_scripts/sb_caseplans.py,sha256=qlmvjQ49bOBE1Q29fVmabimkVibCVr25GNtJhFPTMrc,18145
|
27
|
+
seleniumbase/console_scripts/sb_commander.py,sha256=yqoAK211OE6x5AWL2IAo8WojHtdkVj0AWqfoJ-ewmyo,13329
|
28
|
+
seleniumbase/console_scripts/sb_install.py,sha256=sgiEWkJwmq0XUBl-Gd7YX3I1bHqyn5KgLWyaZimBkHw,45843
|
29
|
+
seleniumbase/console_scripts/sb_mkchart.py,sha256=ep9g-9CSIwaOJKVxhB3xjRQpfsuApyN8-Dr129cNXwQ,10941
|
30
|
+
seleniumbase/console_scripts/sb_mkdir.py,sha256=csqyWGEUdT2slLnQU3p9gnu5qE26TSVi_ZE3wttH_SQ,29778
|
31
|
+
seleniumbase/console_scripts/sb_mkfile.py,sha256=OWYd4yFccmjrd-gNn1t1una-HDRU2_N2-r4Tg3nHsj0,17744
|
32
|
+
seleniumbase/console_scripts/sb_mkpres.py,sha256=EWFRVacjYTX49y-fEiYTZacM9_01IxuuaO4nMjHrIGo,11015
|
33
|
+
seleniumbase/console_scripts/sb_mkrec.py,sha256=WrpT4Qd4TWAU3X5CMm_IBb4FhL27FISU9GD2Spe7svY,11927
|
34
|
+
seleniumbase/console_scripts/sb_objectify.py,sha256=nGxtVGL_nHj0bLHvk86znV3EABsE2_tjF74lgto1_Mk,122020
|
35
|
+
seleniumbase/console_scripts/sb_print.py,sha256=tNy-bMDgwHJO3bZxMpmo9weSE8uhbH0CUpP4VZqWxvI,30558
|
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
39
|
seleniumbase/core/browser_launcher.py,sha256=WgZ71cY5gWUcejDClBBpWGgYbZdcLkGGGt0OGgKQLGk,205979
|
@@ -64,7 +64,7 @@ seleniumbase/extensions/disable_csp.zip,sha256=YMifIIgEBiLrEFrS1sfW4Exh4br1V4oK1
|
|
64
64
|
seleniumbase/extensions/recorder.zip,sha256=OOyzF-Ize2cSRu1CqhzSAq5vusI9hqLLd2OIApUHesI,11918
|
65
65
|
seleniumbase/extensions/sbase_ext.zip,sha256=3s1N8zrVaMz8RQEOIoBzC3KDjtmHwVZRvVsX25Odr_s,8175
|
66
66
|
seleniumbase/fixtures/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
67
|
-
seleniumbase/fixtures/base_case.py,sha256=
|
67
|
+
seleniumbase/fixtures/base_case.py,sha256=flDAtIRqatGw-UgKgIj3Gpuow_JU3eqD1HjXkMajAi0,702501
|
68
68
|
seleniumbase/fixtures/constants.py,sha256=TapuGLdERtvZPGMblVXkNGybr8tj8FMtN3sbJ3ygyoc,13569
|
69
69
|
seleniumbase/fixtures/css_to_xpath.py,sha256=9ouDB1xl4MJ2os6JOgTIAyHKOQfuxtxvXC3O5hSnEKA,1954
|
70
70
|
seleniumbase/fixtures/errors.py,sha256=KyxuEVx_e3MPhVrJfNIa_3ltMpbCFxfy_jxK8RFNTns,555
|
@@ -85,13 +85,13 @@ seleniumbase/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
85
85
|
seleniumbase/plugins/base_plugin.py,sha256=FemdftNhOaTfQIw5bWcJQPPPGQ3P0_sMEI_YYDuzZgU,14972
|
86
86
|
seleniumbase/plugins/basic_test_info.py,sha256=8ov6n417gPbqqvrlT4zrch7l2XcRt-GF2ny6rR9AMWk,2108
|
87
87
|
seleniumbase/plugins/db_reporting_plugin.py,sha256=En09qUCoojrk9-vbcnsoHdSELoGmag2GDIyu3jTiJas,7331
|
88
|
-
seleniumbase/plugins/driver_manager.py,sha256=
|
88
|
+
seleniumbase/plugins/driver_manager.py,sha256=uwJ10gcBxvIh9r01dHekYzyxc3nrlI9SGTAftyouPsI,34157
|
89
89
|
seleniumbase/plugins/page_source.py,sha256=loTnXxOj4kxEukuTZEiGyvKBhY3KDVDMnNlHHheTBDE,1889
|
90
|
-
seleniumbase/plugins/pytest_plugin.py,sha256=
|
90
|
+
seleniumbase/plugins/pytest_plugin.py,sha256=Up96HY6q3hcPo4LQoEcKqt1hm2OmY5GZz_nMXTqDSXQ,97185
|
91
91
|
seleniumbase/plugins/s3_logging_plugin.py,sha256=WDfertQgGOW_SRJpFMaekYD6vBVW9VO62POtXXy2HCM,2319
|
92
|
-
seleniumbase/plugins/sb_manager.py,sha256=
|
92
|
+
seleniumbase/plugins/sb_manager.py,sha256=RbodMQtH2JACFpTYL5tayCRMRrpUDIL04b0Y5GdLBKI,53672
|
93
93
|
seleniumbase/plugins/screen_shots.py,sha256=1hrXw-hzuZ1BR6Yh7AyWX2ABnvnP73-RCbwdz958gj4,1127
|
94
|
-
seleniumbase/plugins/selenium_plugin.py,sha256=
|
94
|
+
seleniumbase/plugins/selenium_plugin.py,sha256=GhGW2ATy2kM7UH7NrZ2je402nN2LMlVHpM-yxlU3I9E,59069
|
95
95
|
seleniumbase/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
96
|
seleniumbase/translate/__init__.py,sha256=N2i5XntTwJZmwr9-qvdX5gC6Rdm5-ClIbnQ8yyPn4Oo,459
|
97
97
|
seleniumbase/translate/chinese.py,sha256=0QhK2eadtsdN4KCvwki1J7jBCe8I4xxWbKzteJKJozY,24698
|
@@ -104,7 +104,7 @@ seleniumbase/translate/master_dict.py,sha256=LJxFoQN7qZ32Dp9dtcM5DymtAJw5ycfJsJH
|
|
104
104
|
seleniumbase/translate/portuguese.py,sha256=x3P4qxp56UiI41GoaL7JbUvFRYsgXU1EKjTgrt2GFtM,25369
|
105
105
|
seleniumbase/translate/russian.py,sha256=TyN9n0b4GRWDEYnHRGw1rfNAscdDmP3F3Y3aySM3C7s,27978
|
106
106
|
seleniumbase/translate/spanish.py,sha256=hh3xgW1Pq122SHYVvJAxFaXhFrjniOVncVbJbfWqOUM,25528
|
107
|
-
seleniumbase/translate/translator.py,sha256=
|
107
|
+
seleniumbase/translate/translator.py,sha256=wPhZH6e5NhmebYL1kP2eGxUcVy1gfTb6XCH8ATEPpxE,49238
|
108
108
|
seleniumbase/undetected/__init__.py,sha256=82W0QApYJ66iwUNLVBK4ixpPa2ri88CuxE3X7fO0284,21896
|
109
109
|
seleniumbase/undetected/cdp.py,sha256=EralLQm8diG5i6EoHFXHIQEc7Uf7PWtzyPH_upS5RIs,4047
|
110
110
|
seleniumbase/undetected/dprocess.py,sha256=VLwyLWXSg-6GkeKpAQcTXLRmuBb0oEdku3_qgMifuwY,1705
|
@@ -126,9 +126,9 @@ seleniumbase/utilities/selenium_grid/start-grid-hub.bat,sha256=Ftq-GrAKRYH2ssDPr
|
|
126
126
|
seleniumbase/utilities/selenium_grid/start-grid-hub.sh,sha256=KADv0RUHONLL2_I443QFK8PryBpDmKn5Gy0s4o0vDSM,106
|
127
127
|
seleniumbase/utilities/selenium_ide/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
128
128
|
seleniumbase/utilities/selenium_ide/convert_ide.py,sha256=pZFnqEJQEKZPyNFjkLD29s2HPQgCrWW9XJWpCPhWOoM,31691
|
129
|
-
seleniumbase-4.31.
|
130
|
-
seleniumbase-4.31.
|
131
|
-
seleniumbase-4.31.
|
132
|
-
seleniumbase-4.31.
|
133
|
-
seleniumbase-4.31.
|
134
|
-
seleniumbase-4.31.
|
129
|
+
seleniumbase-4.31.5.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
|
130
|
+
seleniumbase-4.31.5.dist-info/METADATA,sha256=LwGhrMhX2bqzk5en5EoEoi_kZ8dvRt8cIze_9dQ6mJw,85315
|
131
|
+
seleniumbase-4.31.5.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
132
|
+
seleniumbase-4.31.5.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
133
|
+
seleniumbase-4.31.5.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
134
|
+
seleniumbase-4.31.5.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|