seleniumbase 4.31.6__py3-none-any.whl → 4.31.6a2__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 +2 -0
- seleniumbase/console_scripts/logo_helper.py +2 -0
- seleniumbase/console_scripts/run.py +2 -14
- seleniumbase/console_scripts/sb_behave_gui.py +1 -0
- seleniumbase/console_scripts/sb_caseplans.py +1 -0
- seleniumbase/console_scripts/sb_commander.py +1 -0
- seleniumbase/console_scripts/sb_install.py +1 -0
- seleniumbase/console_scripts/sb_mkchart.py +2 -0
- seleniumbase/console_scripts/sb_mkdir.py +2 -0
- seleniumbase/console_scripts/sb_mkfile.py +2 -0
- seleniumbase/console_scripts/sb_mkpres.py +2 -0
- seleniumbase/console_scripts/sb_mkrec.py +2 -0
- seleniumbase/console_scripts/sb_print.py +2 -0
- seleniumbase/console_scripts/sb_recorder.py +1 -0
- seleniumbase/fixtures/base_case.py +5 -0
- seleniumbase/plugins/pytest_plugin.py +2 -0
- seleniumbase/plugins/sb_manager.py +1 -0
- seleniumbase/translate/translator.py +2 -0
- {seleniumbase-4.31.6.dist-info → seleniumbase-4.31.6a2.dist-info}/METADATA +1 -1
- {seleniumbase-4.31.6.dist-info → seleniumbase-4.31.6a2.dist-info}/RECORD +25 -25
- {seleniumbase-4.31.6.dist-info → seleniumbase-4.31.6a2.dist-info}/LICENSE +0 -0
- {seleniumbase-4.31.6.dist-info → seleniumbase-4.31.6a2.dist-info}/WHEEL +0 -0
- {seleniumbase-4.31.6.dist-info → seleniumbase-4.31.6a2.dist-info}/entry_points.txt +0 -0
- {seleniumbase-4.31.6.dist-info → seleniumbase-4.31.6a2.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.6a2"
|
seleniumbase/behave/behave_sb.py
CHANGED
@@ -1231,6 +1231,7 @@ def behave_dashboard_prepare():
|
|
1231
1231
|
c1 = ""
|
1232
1232
|
cr = ""
|
1233
1233
|
if not is_linux:
|
1234
|
+
shared_utils.fix_colorama_if_windows()
|
1234
1235
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
1235
1236
|
cr = colorama.Style.RESET_ALL
|
1236
1237
|
print("Dashboard: %s%s%s\n%s" % (c1, dash_path, cr, stars))
|
@@ -1342,6 +1343,7 @@ def _perform_behave_terminal_summary_():
|
|
1342
1343
|
c2 = ""
|
1343
1344
|
cr = ""
|
1344
1345
|
if not is_linux:
|
1346
|
+
shared_utils.fix_colorama_if_windows()
|
1345
1347
|
c2 = colorama.Fore.MAGENTA + colorama.Back.LIGHTYELLOW_EX
|
1346
1348
|
cr = colorama.Style.RESET_ALL
|
1347
1349
|
if sb_config.dashboard:
|
@@ -5,6 +5,7 @@
|
|
5
5
|
import colorama
|
6
6
|
import os
|
7
7
|
from contextlib import suppress
|
8
|
+
from seleniumbase.fixtures import shared_utils
|
8
9
|
|
9
10
|
r"""
|
10
11
|
______ __ _ ____
|
@@ -16,6 +17,7 @@ r"""
|
|
16
17
|
|
17
18
|
|
18
19
|
def get_seleniumbase_logo():
|
20
|
+
shared_utils.fix_colorama_if_windows()
|
19
21
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
20
22
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
21
23
|
c3 = colorama.Back.CYAN
|
@@ -41,11 +41,12 @@ sbase grid-node start --hub=127.0.0.1
|
|
41
41
|
import colorama
|
42
42
|
import sys
|
43
43
|
import time
|
44
|
-
from contextlib import suppress
|
45
44
|
from seleniumbase.config import settings
|
46
45
|
from seleniumbase.fixtures import constants
|
47
46
|
from seleniumbase.fixtures import shared_utils
|
48
47
|
|
48
|
+
shared_utils.fix_colorama_if_windows()
|
49
|
+
|
49
50
|
|
50
51
|
def show_basic_usage():
|
51
52
|
from seleniumbase.console_scripts import logo_helper
|
@@ -100,7 +101,6 @@ def show_basic_usage():
|
|
100
101
|
sc += '│ * For info on all commands => "sbase --help" │\n'
|
101
102
|
sc += "╰──────────────────────────────────────────────────╯"
|
102
103
|
sc += ""
|
103
|
-
bordered_sc = sc
|
104
104
|
if "linux" not in sys.platform:
|
105
105
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
106
106
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
@@ -112,18 +112,6 @@ def show_basic_usage():
|
|
112
112
|
sc = sc.replace("[COMMAND]", c3 + "[COMMAND]" + cr)
|
113
113
|
sc = sc.replace("--help", c4 + "--help" + cr)
|
114
114
|
sc = sc.replace("help", c4 + "help" + cr)
|
115
|
-
with suppress(Exception):
|
116
|
-
print(sc)
|
117
|
-
return
|
118
|
-
sc = bordered_sc.replace("╮\n", "")
|
119
|
-
sc = sc.replace("╭", "").replace("╮", "").replace("│", "")
|
120
|
-
sc = sc.replace("╰", "").replace("╯", "").replace("─", "")
|
121
|
-
if "linux" not in sys.platform:
|
122
|
-
sc = sc.replace("seleniumbase", c1 + "selenium" + c2 + "base" + cr)
|
123
|
-
sc = sc.replace("sbase", c1 + "s" + c2 + "base" + cr)
|
124
|
-
sc = sc.replace("[COMMAND]", c3 + "[COMMAND]" + cr)
|
125
|
-
sc = sc.replace("--help", c4 + "--help" + cr)
|
126
|
-
sc = sc.replace("help", c4 + "help" + cr)
|
127
115
|
print(sc)
|
128
116
|
|
129
117
|
|
@@ -38,6 +38,7 @@ def set_colors(use_colors):
|
|
38
38
|
c6 = ""
|
39
39
|
cr = ""
|
40
40
|
if use_colors:
|
41
|
+
shared_utils.fix_colorama_if_windows()
|
41
42
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
42
43
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
43
44
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -42,6 +42,7 @@ def set_colors(use_colors):
|
|
42
42
|
c5 = ""
|
43
43
|
cr = ""
|
44
44
|
if use_colors:
|
45
|
+
shared_utils.fix_colorama_if_windows()
|
45
46
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
46
47
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
47
48
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -42,6 +42,7 @@ def set_colors(use_colors):
|
|
42
42
|
c5 = ""
|
43
43
|
cr = ""
|
44
44
|
if use_colors:
|
45
|
+
shared_utils.fix_colorama_if_windows()
|
45
46
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
46
47
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
47
48
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -294,6 +294,7 @@ 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()
|
297
298
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
298
299
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
299
300
|
c3 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX
|
@@ -26,6 +26,7 @@ import codecs
|
|
26
26
|
import colorama
|
27
27
|
import os
|
28
28
|
import sys
|
29
|
+
from seleniumbase.fixtures import shared_utils
|
29
30
|
|
30
31
|
|
31
32
|
def invalid_run_command(msg=None):
|
@@ -62,6 +63,7 @@ def main():
|
|
62
63
|
c7 = ""
|
63
64
|
cr = ""
|
64
65
|
if "linux" not in sys.platform:
|
66
|
+
shared_utils.fix_colorama_if_windows()
|
65
67
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
66
68
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
67
69
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -22,6 +22,7 @@ import codecs
|
|
22
22
|
import colorama
|
23
23
|
import os
|
24
24
|
import sys
|
25
|
+
from seleniumbase.fixtures import shared_utils
|
25
26
|
|
26
27
|
|
27
28
|
def invalid_run_command(msg=None):
|
@@ -54,6 +55,7 @@ def main():
|
|
54
55
|
c7 = ""
|
55
56
|
cr = ""
|
56
57
|
if "linux" not in sys.platform:
|
58
|
+
shared_utils.fix_colorama_if_windows()
|
57
59
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
58
60
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
59
61
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -44,6 +44,7 @@ import codecs
|
|
44
44
|
import colorama
|
45
45
|
import os
|
46
46
|
import sys
|
47
|
+
from seleniumbase.fixtures import shared_utils
|
47
48
|
|
48
49
|
|
49
50
|
def invalid_run_command(msg=None):
|
@@ -96,6 +97,7 @@ def main():
|
|
96
97
|
c7 = ""
|
97
98
|
cr = ""
|
98
99
|
if "linux" not in sys.platform:
|
100
|
+
shared_utils.fix_colorama_if_windows()
|
99
101
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
100
102
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
101
103
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -26,6 +26,7 @@ import codecs
|
|
26
26
|
import colorama
|
27
27
|
import os
|
28
28
|
import sys
|
29
|
+
from seleniumbase.fixtures import shared_utils
|
29
30
|
|
30
31
|
|
31
32
|
def invalid_run_command(msg=None):
|
@@ -62,6 +63,7 @@ def main():
|
|
62
63
|
c7 = ""
|
63
64
|
cr = ""
|
64
65
|
if "linux" not in sys.platform:
|
66
|
+
shared_utils.fix_colorama_if_windows()
|
65
67
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
66
68
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
67
69
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
@@ -34,6 +34,7 @@ import colorama
|
|
34
34
|
import shutil
|
35
35
|
import os
|
36
36
|
import sys
|
37
|
+
from seleniumbase.fixtures import shared_utils
|
37
38
|
|
38
39
|
|
39
40
|
def invalid_run_command(msg=None):
|
@@ -71,6 +72,7 @@ def set_colors(use_colors):
|
|
71
72
|
c7 = ""
|
72
73
|
cr = ""
|
73
74
|
if use_colors:
|
75
|
+
shared_utils.fix_colorama_if_windows()
|
74
76
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
75
77
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
76
78
|
c2 = colorama.Fore.LIGHTRED_EX + colorama.Back.LIGHTYELLOW_EX
|
@@ -13,6 +13,7 @@ Output:
|
|
13
13
|
import colorama
|
14
14
|
import os
|
15
15
|
import sys
|
16
|
+
from seleniumbase.fixtures import shared_utils
|
16
17
|
|
17
18
|
|
18
19
|
def invalid_run_command(msg=None):
|
@@ -61,6 +62,7 @@ def get_width(line):
|
|
61
62
|
|
62
63
|
|
63
64
|
def main():
|
65
|
+
shared_utils.fix_colorama_if_windows()
|
64
66
|
c5 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
65
67
|
c7 = colorama.Fore.BLACK + colorama.Back.MAGENTA
|
66
68
|
cr = colorama.Style.RESET_ALL
|
@@ -45,6 +45,7 @@ def set_colors(use_colors):
|
|
45
45
|
c4 = ""
|
46
46
|
cr = ""
|
47
47
|
if use_colors:
|
48
|
+
shared_utils.fix_colorama_if_windows()
|
48
49
|
c0 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
49
50
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
50
51
|
c2 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
@@ -4576,6 +4576,7 @@ 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()
|
4579
4580
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
4580
4581
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
4581
4582
|
cr = colorama.Style.RESET_ALL
|
@@ -5397,6 +5398,7 @@ class BaseCase(unittest.TestCase):
|
|
5397
5398
|
c2 = ""
|
5398
5399
|
cr = ""
|
5399
5400
|
if "linux" not in sys.platform:
|
5401
|
+
shared_utils.fix_colorama_if_windows()
|
5400
5402
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
5401
5403
|
c2 = colorama.Fore.LIGHTRED_EX + colorama.Back.LIGHTYELLOW_EX
|
5402
5404
|
cr = colorama.Style.RESET_ALL
|
@@ -5496,6 +5498,7 @@ class BaseCase(unittest.TestCase):
|
|
5496
5498
|
c2 = ""
|
5497
5499
|
cr = ""
|
5498
5500
|
if "linux" not in sys.platform:
|
5501
|
+
shared_utils.fix_colorama_if_windows()
|
5499
5502
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTYELLOW_EX
|
5500
5503
|
c2 = colorama.Fore.LIGHTRED_EX + colorama.Back.LIGHTYELLOW_EX
|
5501
5504
|
cr = colorama.Style.RESET_ALL
|
@@ -16110,6 +16113,7 @@ class BaseCase(unittest.TestCase):
|
|
16110
16113
|
sb_config._has_exception = True
|
16111
16114
|
msg = " ❌ Scenario Failed! (Skipping remaining steps:)"
|
16112
16115
|
if is_windows:
|
16116
|
+
shared_utils.fix_colorama_if_windows()
|
16113
16117
|
c1 = colorama.Fore.RED + colorama.Back.LIGHTRED_EX
|
16114
16118
|
cr = colorama.Style.RESET_ALL
|
16115
16119
|
msg = msg.replace("❌", c1 + "><" + cr)
|
@@ -16117,6 +16121,7 @@ class BaseCase(unittest.TestCase):
|
|
16117
16121
|
else:
|
16118
16122
|
msg = " ✅ Scenario Passed!"
|
16119
16123
|
if is_windows:
|
16124
|
+
shared_utils.fix_colorama_if_windows()
|
16120
16125
|
c2 = colorama.Fore.GREEN + colorama.Back.LIGHTGREEN_EX
|
16121
16126
|
cr = colorama.Style.RESET_ALL
|
16122
16127
|
msg = msg.replace("✅", c2 + "<>" + cr)
|
@@ -130,6 +130,7 @@ 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()
|
133
134
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
134
135
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTGREEN_EX
|
135
136
|
c3 = colorama.Fore.MAGENTA + colorama.Back.LIGHTYELLOW_EX
|
@@ -1953,6 +1954,7 @@ def pytest_collection_finish(session):
|
|
1953
1954
|
c1 = ""
|
1954
1955
|
cr = ""
|
1955
1956
|
if "linux" not in sys.platform:
|
1957
|
+
shared_utils.fix_colorama_if_windows()
|
1956
1958
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
1957
1959
|
cr = colorama.Style.RESET_ALL
|
1958
1960
|
if sb_config._multithreaded:
|
@@ -32,6 +32,7 @@ import colorama
|
|
32
32
|
import os
|
33
33
|
import re
|
34
34
|
import sys
|
35
|
+
from seleniumbase.fixtures import shared_utils
|
35
36
|
from seleniumbase.translate import master_dict
|
36
37
|
|
37
38
|
MD_F = master_dict.MD_F
|
@@ -267,6 +268,7 @@ def process_test_file(code_lines, new_lang):
|
|
267
268
|
|
268
269
|
|
269
270
|
def main():
|
271
|
+
shared_utils.fix_colorama_if_windows()
|
270
272
|
c1 = colorama.Fore.BLUE + colorama.Back.LIGHTCYAN_EX
|
271
273
|
c2 = colorama.Fore.BLUE + colorama.Back.LIGHTYELLOW_EX
|
272
274
|
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=ymGaOsdvAAykev8JJRH79yYsuNDX-T8-TlbULViTrN0,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=Ynge7SBlW-mpqOsdmHFMPSqiIQ_AbD8UhhcrPx7WAj8,59272
|
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=Ro-eCcVi99uwXjiTasnZ7nbCzv-W_a6SleLEnSiKgFU,3017
|
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=z3Ps81En1XVhXoloGSusdefoKB9savEXvuFu7Qj3_yA,58256
|
25
|
+
seleniumbase/console_scripts/sb_behave_gui.py,sha256=ali-Dj3GixNDwG1udqfZurIsxwrDyyfyfW0TZyd4LkA,15194
|
26
|
+
seleniumbase/console_scripts/sb_caseplans.py,sha256=yCy6EpfsnPuNPzPR2XtVmNDyQwjCCYzpqu0bsIrxW58,18192
|
27
|
+
seleniumbase/console_scripts/sb_commander.py,sha256=ppZvsoHTlFgP6j9Urjw1pLNVnEVDbMkaxHcNaQyr4iA,13376
|
28
|
+
seleniumbase/console_scripts/sb_install.py,sha256=FR7JD_hRNNJPld8b-bHVP8-K5yFqodHsCPJzipvqvQ8,45886
|
29
|
+
seleniumbase/console_scripts/sb_mkchart.py,sha256=vt5rkvVxCkUo3Gmb6oYQILXr32-uK7DxOt7rUCa2-QU,11035
|
30
|
+
seleniumbase/console_scripts/sb_mkdir.py,sha256=4rvlqfyb4b2yNnvKpZCNyTtQsQjD2frGlVXmxiAoUcA,29872
|
31
|
+
seleniumbase/console_scripts/sb_mkfile.py,sha256=yoDLWfNqVMCtpm6kmj2XaoK7TLelfhQUo8JZtWdcU4Q,17838
|
32
|
+
seleniumbase/console_scripts/sb_mkpres.py,sha256=JAYe0TS3iy7Dk5F4fcLMlBFNRHntyLuyBApvq817XM8,11109
|
33
|
+
seleniumbase/console_scripts/sb_mkrec.py,sha256=toj3HRpzGKtoCY0mQf3cFumwtVnYo8RA5PWo4MB8xAA,12021
|
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=ZaCLEb7j1NLDKLN9VtuKhb-AkQpxm45x-Fw6U5ugNgQ,30648
|
36
|
+
seleniumbase/console_scripts/sb_recorder.py,sha256=mJ-m9g5hFKafKD1sG1PUnZZWfc0EnRTY_7VH_gAVu1Y,10955
|
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=dttc4mno2uSC0Au8oRGEJhL_LZ0K0VPiTEPsIYFWy-U,702784
|
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=N616ssUf3WD805mac6TARW1FPhLvLXoloWD5FdAw9x8,97283
|
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=mcm_l6MXcmvqIRoPy3pWX_rqbeZwubEgf467wazy3DE,53719
|
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=LUvTXqxP04t8KklacZWTnMaoNH-ucG4znvR1ImUd0so,49328
|
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.6a2.dist-info/LICENSE,sha256=odSYtWibXBnQ1gBg6CnDZ82n8kLF_if5-2nbqnEyD8k,1085
|
130
|
+
seleniumbase-4.31.6a2.dist-info/METADATA,sha256=XGvGRlQ9DG_sIu13hXfy-Ww1Cfl7gnVchJHBb7Y8yvI,85317
|
131
|
+
seleniumbase-4.31.6a2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
132
|
+
seleniumbase-4.31.6a2.dist-info/entry_points.txt,sha256=CNrh2EKNaHYEhO6pP1RJyVLB99LkDDYX7TnUK8xfjqk,623
|
133
|
+
seleniumbase-4.31.6a2.dist-info/top_level.txt,sha256=4N97aBOQ8ETCnDnokBsWb07lJfTaq3C1ZzYRxvLMxqU,19
|
134
|
+
seleniumbase-4.31.6a2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|