seleniumbase 4.31.6a3__py3-none-any.whl → 4.31.6a4__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/behave/behave_sb.py +0 -2
- seleniumbase/console_scripts/logo_helper.py +0 -2
- seleniumbase/console_scripts/run.py +4 -38
- seleniumbase/console_scripts/sb_behave_gui.py +0 -1
- seleniumbase/console_scripts/sb_caseplans.py +0 -1
- seleniumbase/console_scripts/sb_commander.py +0 -1
- seleniumbase/console_scripts/sb_install.py +0 -1
- seleniumbase/console_scripts/sb_mkchart.py +0 -2
- seleniumbase/console_scripts/sb_mkdir.py +0 -2
- seleniumbase/console_scripts/sb_mkfile.py +0 -2
- seleniumbase/console_scripts/sb_mkpres.py +0 -2
- seleniumbase/console_scripts/sb_mkrec.py +0 -2
- seleniumbase/console_scripts/sb_print.py +0 -2
- seleniumbase/console_scripts/sb_recorder.py +0 -1
- seleniumbase/fixtures/base_case.py +0 -5
- seleniumbase/plugins/pytest_plugin.py +0 -2
- seleniumbase/plugins/sb_manager.py +0 -1
- seleniumbase/translate/translator.py +0 -2
- {seleniumbase-4.31.6a3.dist-info → seleniumbase-4.31.6a4.dist-info}/METADATA +1 -1
- {seleniumbase-4.31.6a3.dist-info → seleniumbase-4.31.6a4.dist-info}/RECORD +25 -25
- {seleniumbase-4.31.6a3.dist-info → seleniumbase-4.31.6a4.dist-info}/LICENSE +0 -0
- {seleniumbase-4.31.6a3.dist-info → seleniumbase-4.31.6a4.dist-info}/WHEEL +0 -0
- {seleniumbase-4.31.6a3.dist-info → seleniumbase-4.31.6a4.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.31.6a3.dist-info → seleniumbase-4.31.6a4.dist-info}/top_level.txt +0 -0
seleniumbase/__version__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
# seleniumbase package
|
2
|
-
__version__ = "4.31.
|
2
|
+
__version__ = "4.31.6a4"
|
seleniumbase/behave/behave_sb.py
CHANGED
@@ -1231,7 +1231,6 @@ def behave_dashboard_prepare():
|
|
1231
1231
|
c1 = ""
|
1232
1232
|
cr = ""
|
1233
1233
|
if not is_linux:
|
1234
|
-
shared_utils.fix_colorama_if_windows()
|
1235
1234
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
1236
1235
|
cr = colorama.Style.RESET_ALL
|
1237
1236
|
print("Dashboard: %s%s%s\n%s" % (c1, dash_path, cr, stars))
|
@@ -1343,7 +1342,6 @@ def _perform_behave_terminal_summary_():
|
|
1343
1342
|
c2 = ""
|
1344
1343
|
cr = ""
|
1345
1344
|
if not is_linux:
|
1346
|
-
shared_utils.fix_colorama_if_windows()
|
1347
1345
|
c2 = colorama.Fore.MAGENTA + colorama.Back.LIGHTYELLOW_EX
|
1348
1346
|
cr = colorama.Style.RESET_ALL
|
1349
1347
|
if sb_config.dashboard:
|
@@ -5,7 +5,6 @@
|
|
5
5
|
import colorama
|
6
6
|
import os
|
7
7
|
from contextlib import suppress
|
8
|
-
from seleniumbase.fixtures import shared_utils
|
9
8
|
|
10
9
|
r"""
|
11
10
|
______ __ _ ____
|
@@ -17,7 +16,6 @@ r"""
|
|
17
16
|
|
18
17
|
|
19
18
|
def get_seleniumbase_logo():
|
20
|
-
shared_utils.fix_colorama_if_windows()
|
21
19
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
22
20
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
23
21
|
c3 = colorama.Back.CYAN
|
@@ -46,8 +46,6 @@ from seleniumbase.config import settings
|
|
46
46
|
from seleniumbase.fixtures import constants
|
47
47
|
from seleniumbase.fixtures import shared_utils
|
48
48
|
|
49
|
-
shared_utils.fix_colorama_if_windows()
|
50
|
-
|
51
49
|
|
52
50
|
def show_basic_usage():
|
53
51
|
from seleniumbase.console_scripts import logo_helper
|
@@ -102,6 +100,7 @@ def show_basic_usage():
|
|
102
100
|
sc += '│ * For info on all commands => "sbase --help" │\n'
|
103
101
|
sc += "╰──────────────────────────────────────────────────╯"
|
104
102
|
sc += ""
|
103
|
+
bordered_sc = sc
|
105
104
|
if "linux" not in sys.platform:
|
106
105
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
107
106
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
@@ -116,42 +115,9 @@ def show_basic_usage():
|
|
116
115
|
with suppress(Exception):
|
117
116
|
print(sc)
|
118
117
|
return
|
119
|
-
sc = ""
|
120
|
-
sc
|
121
|
-
sc
|
122
|
-
sc += " \n"
|
123
|
-
sc += " COMMANDS: PARAMETERS / DESCRIPTIONS: \n"
|
124
|
-
sc += " get / install [DRIVER_NAME] [OPTIONS] \n"
|
125
|
-
sc += " methods (List common Python methods) \n"
|
126
|
-
sc += " options (List common pytest options) \n"
|
127
|
-
sc += " behave-options (List common behave options) \n"
|
128
|
-
sc += " gui / commander [OPTIONAL PATH or TEST FILE] \n"
|
129
|
-
sc += " behave-gui (SBase Commander for Behave) \n"
|
130
|
-
sc += " caseplans [OPTIONAL PATH or TEST FILE] \n"
|
131
|
-
sc += " mkdir [DIRECTORY] [OPTIONS] \n"
|
132
|
-
sc += " mkfile [FILE.py] [OPTIONS] \n"
|
133
|
-
sc += " mkrec / codegen [FILE.py] [OPTIONS] \n"
|
134
|
-
sc += " recorder (Open Recorder Desktop App.) \n"
|
135
|
-
sc += " record (If args: mkrec. Else: App.) \n"
|
136
|
-
sc += " mkpres [FILE.py] [LANG] \n"
|
137
|
-
sc += " mkchart [FILE.py] [LANG] \n"
|
138
|
-
sc += " print [FILE] [OPTIONS] \n"
|
139
|
-
sc += " translate [SB_FILE.py] [LANG] [ACTION] \n"
|
140
|
-
sc += " convert [WEBDRIVER_UNITTEST_FILE.py] \n"
|
141
|
-
sc += " extract-objects [SB_FILE.py] \n"
|
142
|
-
sc += " inject-objects [SB_FILE.py] [OPTIONS] \n"
|
143
|
-
sc += " objectify [SB_FILE.py] [OPTIONS] \n"
|
144
|
-
sc += " revert-objects [SB_FILE.py] [OPTIONS] \n"
|
145
|
-
sc += " encrypt / obfuscate \n"
|
146
|
-
sc += " decrypt / unobfuscate \n"
|
147
|
-
sc += " proxy (Start a basic proxy server) \n"
|
148
|
-
sc += " download server (Get Selenium Grid JAR file) \n"
|
149
|
-
sc += " grid-hub [start|stop] [OPTIONS] \n"
|
150
|
-
sc += " grid-node [start|stop] --hub=[HOST/IP] \n"
|
151
|
-
sc += " \n"
|
152
|
-
sc += ' * EXAMPLE => "sbase get chromedriver stable" \n'
|
153
|
-
sc += ' * For command info => "sbase help [COMMAND]" \n'
|
154
|
-
sc += ' * For info on all commands => "sbase --help" \n'
|
118
|
+
sc = bordered_sc.replace("╮\n", "")
|
119
|
+
sc = sc.replace("╭", "").replace("╮", "").replace("│", "")
|
120
|
+
sc = sc.replace("╰", "").replace("╯", "").replace("─", "")
|
155
121
|
if "linux" not in sys.platform:
|
156
122
|
sc = sc.replace("seleniumbase", c1 + "selenium" + c2 + "base" + cr)
|
157
123
|
sc = sc.replace("sbase", c1 + "s" + c2 + "base" + cr)
|
@@ -38,7 +38,6 @@ def set_colors(use_colors):
|
|
38
38
|
c6 = ""
|
39
39
|
cr = ""
|
40
40
|
if use_colors:
|
41
|
-
shared_utils.fix_colorama_if_windows()
|
42
41
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
43
42
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
44
43
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -42,7 +42,6 @@ def set_colors(use_colors):
|
|
42
42
|
c5 = ""
|
43
43
|
cr = ""
|
44
44
|
if use_colors:
|
45
|
-
shared_utils.fix_colorama_if_windows()
|
46
45
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
47
46
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
48
47
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -42,7 +42,6 @@ def set_colors(use_colors):
|
|
42
42
|
c5 = ""
|
43
43
|
cr = ""
|
44
44
|
if use_colors:
|
45
|
-
shared_utils.fix_colorama_if_windows()
|
46
45
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
47
46
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
48
47
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -294,7 +294,6 @@ def main(override=None, intel_for_uc=None, force_uc=None):
|
|
294
294
|
use_version = ""
|
295
295
|
new_file = ""
|
296
296
|
f_name = ""
|
297
|
-
shared_utils.fix_colorama_if_windows()
|
298
297
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
299
298
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
300
299
|
c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX
|
@@ -26,7 +26,6 @@ import codecs
|
|
26
26
|
import colorama
|
27
27
|
import os
|
28
28
|
import sys
|
29
|
-
from seleniumbase.fixtures import shared_utils
|
30
29
|
|
31
30
|
|
32
31
|
def invalid_run_command(msg=None):
|
@@ -63,7 +62,6 @@ def main():
|
|
63
62
|
c7 = ""
|
64
63
|
cr = ""
|
65
64
|
if "linux" not in sys.platform:
|
66
|
-
shared_utils.fix_colorama_if_windows()
|
67
65
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
68
66
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
69
67
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -22,7 +22,6 @@ import codecs
|
|
22
22
|
import colorama
|
23
23
|
import os
|
24
24
|
import sys
|
25
|
-
from seleniumbase.fixtures import shared_utils
|
26
25
|
|
27
26
|
|
28
27
|
def invalid_run_command(msg=None):
|
@@ -55,7 +54,6 @@ def main():
|
|
55
54
|
c7 = ""
|
56
55
|
cr = ""
|
57
56
|
if "linux" not in sys.platform:
|
58
|
-
shared_utils.fix_colorama_if_windows()
|
59
57
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
60
58
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
61
59
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -44,7 +44,6 @@ import codecs
|
|
44
44
|
import colorama
|
45
45
|
import os
|
46
46
|
import sys
|
47
|
-
from seleniumbase.fixtures import shared_utils
|
48
47
|
|
49
48
|
|
50
49
|
def invalid_run_command(msg=None):
|
@@ -97,7 +96,6 @@ def main():
|
|
97
96
|
c7 = ""
|
98
97
|
cr = ""
|
99
98
|
if "linux" not in sys.platform:
|
100
|
-
shared_utils.fix_colorama_if_windows()
|
101
99
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
102
100
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
103
101
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -26,7 +26,6 @@ import codecs
|
|
26
26
|
import colorama
|
27
27
|
import os
|
28
28
|
import sys
|
29
|
-
from seleniumbase.fixtures import shared_utils
|
30
29
|
|
31
30
|
|
32
31
|
def invalid_run_command(msg=None):
|
@@ -63,7 +62,6 @@ def main():
|
|
63
62
|
c7 = ""
|
64
63
|
cr = ""
|
65
64
|
if "linux" not in sys.platform:
|
66
|
-
shared_utils.fix_colorama_if_windows()
|
67
65
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
68
66
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
69
67
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -34,7 +34,6 @@ import colorama
|
|
34
34
|
import shutil
|
35
35
|
import os
|
36
36
|
import sys
|
37
|
-
from seleniumbase.fixtures import shared_utils
|
38
37
|
|
39
38
|
|
40
39
|
def invalid_run_command(msg=None):
|
@@ -72,7 +71,6 @@ def set_colors(use_colors):
|
|
72
71
|
c7 = ""
|
73
72
|
cr = ""
|
74
73
|
if use_colors:
|
75
|
-
shared_utils.fix_colorama_if_windows()
|
76
74
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
77
75
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
78
76
|
c2 = colorama.Fore.LIGHTRED_EX + colorama.Back.LIGHTYELLOW_EX
|
@@ -13,7 +13,6 @@ Output:
|
|
13
13
|
import colorama
|
14
14
|
import os
|
15
15
|
import sys
|
16
|
-
from seleniumbase.fixtures import shared_utils
|
17
16
|
|
18
17
|
|
19
18
|
def invalid_run_command(msg=None):
|
@@ -62,7 +61,6 @@ def get_width(line):
|
|
62
61
|
|
63
62
|
|
64
63
|
def main():
|
65
|
-
shared_utils.fix_colorama_if_windows()
|
66
64
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
67
65
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
68
66
|
cr = colorama.Style.RESET_ALL
|
@@ -45,7 +45,6 @@ def set_colors(use_colors):
|
|
45
45
|
c4 = ""
|
46
46
|
cr = ""
|
47
47
|
if use_colors:
|
48
|
-
shared_utils.fix_colorama_if_windows()
|
49
48
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
50
49
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
51
50
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -4576,7 +4576,6 @@ class BaseCase(unittest.TestCase):
|
|
4576
4576
|
|
4577
4577
|
if not self.is_chromium():
|
4578
4578
|
if "linux" not in sys.platform:
|
4579
|
-
shared_utils.fix_colorama_if_windows()
|
4580
4579
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
4581
4580
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
4582
4581
|
cr = colorama.Style.RESET_ALL
|
@@ -5398,7 +5397,6 @@ class BaseCase(unittest.TestCase):
|
|
5398
5397
|
c2 = ""
|
5399
5398
|
cr = ""
|
5400
5399
|
if "linux" not in sys.platform:
|
5401
|
-
shared_utils.fix_colorama_if_windows()
|
5402
5400
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
5403
5401
|
c2 = colorama.Fore.LIGHTRED_EX + colorama.Back.LIGHTYELLOW_EX
|
5404
5402
|
cr = colorama.Style.RESET_ALL
|
@@ -5498,7 +5496,6 @@ class BaseCase(unittest.TestCase):
|
|
5498
5496
|
c2 = ""
|
5499
5497
|
cr = ""
|
5500
5498
|
if "linux" not in sys.platform:
|
5501
|
-
shared_utils.fix_colorama_if_windows()
|
5502
5499
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
5503
5500
|
c2 = colorama.Fore.LIGHTRED_EX + colorama.Back.LIGHTYELLOW_EX
|
5504
5501
|
cr = colorama.Style.RESET_ALL
|
@@ -16113,7 +16110,6 @@ class BaseCase(unittest.TestCase):
|
|
16113
16110
|
sb_config._has_exception = True
|
16114
16111
|
msg = " ❌ Scenario Failed! (Skipping remaining steps:)"
|
16115
16112
|
if is_windows:
|
16116
|
-
shared_utils.fix_colorama_if_windows()
|
16117
16113
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTRED_EX
|
16118
16114
|
cr = colorama.Style.RESET_ALL
|
16119
16115
|
msg = msg.replace("❌", c1 + "><" + cr)
|
@@ -16121,7 +16117,6 @@ class BaseCase(unittest.TestCase):
|
|
16121
16117
|
else:
|
16122
16118
|
msg = " ✅ Scenario Passed!"
|
16123
16119
|
if is_windows:
|
16124
|
-
shared_utils.fix_colorama_if_windows()
|
16125
16120
|
c2 = colorama.Fore.GREEN + colorama.Back.LIGHTGREEN_EX
|
16126
16121
|
cr = colorama.Style.RESET_ALL
|
16127
16122
|
msg = msg.replace("✅", c2 + "<>" + cr)
|
@@ -130,7 +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
|
-
shared_utils.fix_colorama_if_windows()
|
134
133
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
135
134
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
136
135
|
c3 = colorama.Fore.MAGENTA + colorama.Back.LIGHTYELLOW_EX
|
@@ -1954,7 +1953,6 @@ def pytest_collection_finish(session):
|
|
1954
1953
|
c1 = ""
|
1955
1954
|
cr = ""
|
1956
1955
|
if "linux" not in sys.platform:
|
1957
|
-
shared_utils.fix_colorama_if_windows()
|
1958
1956
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
1959
1957
|
cr = colorama.Style.RESET_ALL
|
1960
1958
|
if sb_config._multithreaded:
|
@@ -32,7 +32,6 @@ import colorama
|
|
32
32
|
import os
|
33
33
|
import re
|
34
34
|
import sys
|
35
|
-
from seleniumbase.fixtures import shared_utils
|
36
35
|
from seleniumbase.translate import master_dict
|
37
36
|
|
38
37
|
MD_F = master_dict.MD_F
|
@@ -268,7 +267,6 @@ def process_test_file(code_lines, new_lang):
|
|
268
267
|
|
269
268
|
|
270
269
|
def main():
|
271
|
-
shared_utils.fix_colorama_if_windows()
|
272
270
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
273
271
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX
|
274
272
|
c3 = colorama.Fore.RED + colorama.Back.LIGHTGREEN_EX
|
@@ -3,10 +3,10 @@ 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=iP6NEIVR1Xa1xKckgQqUAD0QbLQSu2Cg6Jc2vViMXNg,48
|
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=
|
24
|
+
seleniumbase/console_scripts/run.py,sha256=t_mpBUIJLBrUtzJ5RQL5y8UVCTm7DhNyS94rHwIOnRs,58850
|
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
34
|
seleniumbase/console_scripts/sb_objectify.py,sha256=nGxtVGL_nHj0bLHvk86znV3EABsE2_tjF74lgto1_Mk,122020
|
35
|
-
seleniumbase/console_scripts/sb_print.py,sha256=
|
36
|
-
seleniumbase/console_scripts/sb_recorder.py,sha256=
|
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
|
@@ -87,9 +87,9 @@ seleniumbase/plugins/basic_test_info.py,sha256=8ov6n417gPbqqvrlT4zrch7l2XcRt-GF2
|
|
87
87
|
seleniumbase/plugins/db_reporting_plugin.py,sha256=En09qUCoojrk9-vbcnsoHdSELoGmag2GDIyu3jTiJas,7331
|
88
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
94
|
seleniumbase/plugins/selenium_plugin.py,sha256=GhGW2ATy2kM7UH7NrZ2je402nN2LMlVHpM-yxlU3I9E,59069
|
95
95
|
seleniumbase/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -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.6a4.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
|
130
|
+
seleniumbase-4.31.6a4.dist-info/METADATA,sha256=yOkhKdH0cUVe7Ce-oIgvTDv6MaZGKymFsIcaVDFhcns,85317
|
131
|
+
seleniumbase-4.31.6a4.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
132
|
+
seleniumbase-4.31.6a4.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
133
|
+
seleniumbase-4.31.6a4.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
134
|
+
seleniumbase-4.31.6a4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|