cucu 1.2.1__py3-none-any.whl → 1.2.2__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.
Potentially problematic release.
This version of cucu might be problematic. Click here for more details.
- cucu/browser/core.py +1 -1
- cucu/cli/core.py +54 -0
- cucu/formatter/cucu.py +3 -3
- cucu/formatter/json.py +1 -1
- cucu/reporter/html.py +3 -3
- cucu/steps/button_steps.py +9 -1
- cucu/steps/checkbox_steps.py +13 -1
- cucu/steps/radio_steps.py +13 -1
- cucu/steps/table_steps.py +5 -5
- cucu/utils.py +26 -0
- {cucu-1.2.1.dist-info → cucu-1.2.2.dist-info}/METADATA +1 -1
- {cucu-1.2.1.dist-info → cucu-1.2.2.dist-info}/RECORD +15 -15
- {cucu-1.2.1.dist-info → cucu-1.2.2.dist-info}/WHEEL +0 -0
- {cucu-1.2.1.dist-info → cucu-1.2.2.dist-info}/entry_points.txt +0 -0
- {cucu-1.2.1.dist-info → cucu-1.2.2.dist-info}/licenses/LICENSE +0 -0
cucu/browser/core.py
CHANGED
cucu/cli/core.py
CHANGED
|
@@ -7,6 +7,7 @@ import signal
|
|
|
7
7
|
import sys
|
|
8
8
|
import time
|
|
9
9
|
import xml.etree.ElementTree as ET
|
|
10
|
+
from collections import Counter
|
|
10
11
|
from importlib.metadata import version
|
|
11
12
|
from pathlib import Path
|
|
12
13
|
from threading import Timer
|
|
@@ -14,6 +15,8 @@ from threading import Timer
|
|
|
14
15
|
import click
|
|
15
16
|
import coverage
|
|
16
17
|
import psutil
|
|
18
|
+
from behave.model_core import FileLocation
|
|
19
|
+
from behave.runner_util import parse_features
|
|
17
20
|
from click import ClickException
|
|
18
21
|
from mpire import WorkerPool
|
|
19
22
|
from tabulate import tabulate
|
|
@@ -851,5 +854,56 @@ def debug(browser, url, detach, logging_level):
|
|
|
851
854
|
time.sleep(5)
|
|
852
855
|
|
|
853
856
|
|
|
857
|
+
@main.command()
|
|
858
|
+
@click.option(
|
|
859
|
+
"-l",
|
|
860
|
+
"--logging-level",
|
|
861
|
+
default="INFO",
|
|
862
|
+
help="set logging level to one of debug, warn or info (default)",
|
|
863
|
+
)
|
|
864
|
+
@click.argument(
|
|
865
|
+
"filepath", default="features", type=click.Path(path_type=Path)
|
|
866
|
+
)
|
|
867
|
+
def tags(filepath, logging_level):
|
|
868
|
+
"""
|
|
869
|
+
print a table of tags and affected scenario counts
|
|
870
|
+
"""
|
|
871
|
+
init_global_hook_variables()
|
|
872
|
+
os.environ["CUCU_LOGGING_LEVEL"] = logging_level.upper()
|
|
873
|
+
logger.init_logging(logging_level.upper())
|
|
874
|
+
|
|
875
|
+
if filepath.is_file():
|
|
876
|
+
feature_files = [filepath]
|
|
877
|
+
else:
|
|
878
|
+
feature_files = list(filepath.rglob("*.feature"))
|
|
879
|
+
|
|
880
|
+
if not filepath.exists() or not feature_files:
|
|
881
|
+
raise ClickException("No feature files found.")
|
|
882
|
+
|
|
883
|
+
file_locations = [
|
|
884
|
+
FileLocation(os.path.abspath(str(f))) for f in feature_files
|
|
885
|
+
]
|
|
886
|
+
features = parse_features(file_locations)
|
|
887
|
+
tag_scenarios = Counter()
|
|
888
|
+
|
|
889
|
+
for feature in features:
|
|
890
|
+
for scenario in feature.scenarios:
|
|
891
|
+
affecting_tags = set(feature.tags + scenario.tags)
|
|
892
|
+
tag_scenarios.update(affecting_tags)
|
|
893
|
+
|
|
894
|
+
if not tag_scenarios:
|
|
895
|
+
print("No tags found in feature files.")
|
|
896
|
+
return
|
|
897
|
+
|
|
898
|
+
table_data = [["Tag", "Scenarios Affected"]] + [
|
|
899
|
+
[tag_name, str(count)]
|
|
900
|
+
for tag_name, count in sorted(
|
|
901
|
+
tag_scenarios.items(), key=lambda x: x[0].lower()
|
|
902
|
+
)
|
|
903
|
+
]
|
|
904
|
+
|
|
905
|
+
print(tabulate(table_data, headers="firstrow", tablefmt="fancy_grid"))
|
|
906
|
+
|
|
907
|
+
|
|
854
908
|
if __name__ == "__main__":
|
|
855
909
|
main()
|
cucu/formatter/cucu.py
CHANGED
|
@@ -66,7 +66,7 @@ class CucuFormatter(Formatter):
|
|
|
66
66
|
# -- IMPLEMENT-INTERFACE FOR: Formatter
|
|
67
67
|
def feature(self, feature):
|
|
68
68
|
self.write_tags(feature.tags, for_feature=True)
|
|
69
|
-
text = f
|
|
69
|
+
text = f"{self.colorize(feature.keyword, 'magenta')}: {feature.name}\n"
|
|
70
70
|
self.stream.write(text)
|
|
71
71
|
|
|
72
72
|
def colorize(self, text, color):
|
|
@@ -193,7 +193,7 @@ class CucuFormatter(Formatter):
|
|
|
193
193
|
status_text_padding = (
|
|
194
194
|
max_line_length - len(current_step_text) - len(prefix)
|
|
195
195
|
)
|
|
196
|
-
status_text = f'
|
|
196
|
+
status_text = f"{' ' * status_text_padding}{status_text}"
|
|
197
197
|
status_text = self.colorize(status_text, "yellow")
|
|
198
198
|
|
|
199
199
|
self.stream.write(f"{status_text}\n")
|
|
@@ -227,7 +227,7 @@ class CucuFormatter(Formatter):
|
|
|
227
227
|
]
|
|
228
228
|
)
|
|
229
229
|
|
|
230
|
-
padding = f" {' '*(len('Given')-len(step.keyword))}"
|
|
230
|
+
padding = f" {' ' * (len('Given') - len(step.keyword))}"
|
|
231
231
|
variable_line = f"{padding}# {expanded}\n"
|
|
232
232
|
# hide secrets before we do anything to add color which could
|
|
233
233
|
# modify the output and result in not being able to correctly
|
cucu/formatter/json.py
CHANGED
|
@@ -176,7 +176,7 @@ class CucuJSONFormatter(Formatter):
|
|
|
176
176
|
for (key, value) in step_variables.items()
|
|
177
177
|
]
|
|
178
178
|
)
|
|
179
|
-
padding = f" {' '*(len('Given')-len(step.keyword))}"
|
|
179
|
+
padding = f" {' ' * (len('Given') - len(step.keyword))}"
|
|
180
180
|
step.stdout.insert(
|
|
181
181
|
0, f"{padding}# {CONFIG.hide_secrets(expanded)}\n"
|
|
182
182
|
)
|
cucu/reporter/html.py
CHANGED
|
@@ -171,7 +171,7 @@ def generate(results, basepath, only_failures=False):
|
|
|
171
171
|
sub_headers.append(handler(scenario))
|
|
172
172
|
except Exception:
|
|
173
173
|
logger.warning(
|
|
174
|
-
f
|
|
174
|
+
f'Exception while trying to run sub_headers hook for scenario: "{scenario["name"]}"\n{traceback.format_exc()}'
|
|
175
175
|
)
|
|
176
176
|
scenario["sub_headers"] = "<br/>".join(sub_headers)
|
|
177
177
|
|
|
@@ -204,7 +204,7 @@ def generate(results, basepath, only_failures=False):
|
|
|
204
204
|
# Map the count to the appropriate HTML heading (h2-h5)
|
|
205
205
|
# We use h2-h5 instead of h1-h4 so h1 can be reserved for scenario/feature titles
|
|
206
206
|
step["heading_level"] = (
|
|
207
|
-
f"h{step[
|
|
207
|
+
f"h{step['name'][:4].count('#') + 1}"
|
|
208
208
|
)
|
|
209
209
|
|
|
210
210
|
if os.path.exists(image_dirpath):
|
|
@@ -422,7 +422,7 @@ def generate(results, basepath, only_failures=False):
|
|
|
422
422
|
)
|
|
423
423
|
|
|
424
424
|
feature_output_filepath = os.path.join(
|
|
425
|
-
basepath, f
|
|
425
|
+
basepath, f"{feature['name']}.html"
|
|
426
426
|
)
|
|
427
427
|
|
|
428
428
|
with open(feature_output_filepath, "wb") as output:
|
cucu/steps/button_steps.py
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
from cucu import fuzzy, helpers
|
|
2
|
-
from cucu.utils import
|
|
2
|
+
from cucu.utils import (
|
|
3
|
+
find_n_click_input_parent_label,
|
|
4
|
+
is_element_size_zero,
|
|
5
|
+
take_saw_element_screenshot,
|
|
6
|
+
)
|
|
3
7
|
|
|
4
8
|
from . import base_steps
|
|
5
9
|
|
|
@@ -67,6 +71,10 @@ def click_button(ctx, button):
|
|
|
67
71
|
if base_steps.is_disabled(button):
|
|
68
72
|
raise RuntimeError("unable to click the button, as it is disabled")
|
|
69
73
|
|
|
74
|
+
if is_element_size_zero(button):
|
|
75
|
+
find_n_click_input_parent_label(ctx, button)
|
|
76
|
+
return
|
|
77
|
+
|
|
70
78
|
ctx.browser.click(button)
|
|
71
79
|
|
|
72
80
|
|
cucu/steps/checkbox_steps.py
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
from cucu import fuzzy, helpers
|
|
2
|
-
from cucu.utils import
|
|
2
|
+
from cucu.utils import (
|
|
3
|
+
find_n_click_input_parent_label,
|
|
4
|
+
is_element_size_zero,
|
|
5
|
+
take_saw_element_screenshot,
|
|
6
|
+
)
|
|
3
7
|
|
|
4
8
|
from . import base_steps
|
|
5
9
|
|
|
@@ -66,6 +70,10 @@ def check_checkbox(ctx, checkbox):
|
|
|
66
70
|
if base_steps.is_disabled(checkbox):
|
|
67
71
|
raise RuntimeError("unable to check the checkbox, as it is disabled")
|
|
68
72
|
|
|
73
|
+
if is_element_size_zero(checkbox):
|
|
74
|
+
find_n_click_input_parent_label(ctx, checkbox)
|
|
75
|
+
return
|
|
76
|
+
|
|
69
77
|
ctx.browser.click(checkbox)
|
|
70
78
|
|
|
71
79
|
|
|
@@ -78,6 +86,10 @@ def uncheck_checkbox(ctx, checkbox):
|
|
|
78
86
|
if is_not_checked(checkbox):
|
|
79
87
|
raise Exception("checkbox already unchecked")
|
|
80
88
|
|
|
89
|
+
if is_element_size_zero(checkbox):
|
|
90
|
+
find_n_click_input_parent_label(ctx, checkbox)
|
|
91
|
+
return
|
|
92
|
+
|
|
81
93
|
ctx.browser.click(checkbox)
|
|
82
94
|
|
|
83
95
|
|
cucu/steps/radio_steps.py
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
from cucu import fuzzy, helpers, retry, step
|
|
2
2
|
from cucu.config import CONFIG
|
|
3
|
-
from cucu.utils import
|
|
3
|
+
from cucu.utils import (
|
|
4
|
+
find_n_click_input_parent_label,
|
|
5
|
+
is_element_size_zero,
|
|
6
|
+
take_saw_element_screenshot,
|
|
7
|
+
)
|
|
4
8
|
|
|
5
9
|
from . import base_steps
|
|
6
10
|
|
|
@@ -90,6 +94,10 @@ def find_n_select_radio_button(ctx, name, index=0, ignore_if_selected=False):
|
|
|
90
94
|
|
|
91
95
|
raise Exception(f'radio button "{name}" already selected')
|
|
92
96
|
|
|
97
|
+
if is_element_size_zero(radio):
|
|
98
|
+
find_n_click_input_parent_label(ctx, radio)
|
|
99
|
+
return
|
|
100
|
+
|
|
93
101
|
ctx.browser.click(radio)
|
|
94
102
|
|
|
95
103
|
|
|
@@ -123,6 +131,10 @@ def select_radio_button(ctx, radiobox):
|
|
|
123
131
|
if selected:
|
|
124
132
|
raise Exception("radiobox already selected")
|
|
125
133
|
|
|
134
|
+
if is_element_size_zero(radiobox):
|
|
135
|
+
find_n_click_input_parent_label(ctx, radiobox)
|
|
136
|
+
return
|
|
137
|
+
|
|
126
138
|
ctx.browser.click(radiobox)
|
|
127
139
|
|
|
128
140
|
|
cucu/steps/table_steps.py
CHANGED
|
@@ -306,7 +306,7 @@ def get_table_cell_value(ctx, table, row, column, variable_name):
|
|
|
306
306
|
cell_value = tables[table][row][column]
|
|
307
307
|
except IndexError:
|
|
308
308
|
raise RuntimeError(
|
|
309
|
-
f"Cannot find table:{table+1},row:{row+1},column:{column+1}. Please check your table data."
|
|
309
|
+
f"Cannot find table:{table + 1},row:{row + 1},column:{column + 1}. Please check your table data."
|
|
310
310
|
)
|
|
311
311
|
config.CONFIG[variable_name] = cell_value
|
|
312
312
|
|
|
@@ -343,7 +343,7 @@ def find_table_element(ctx, nth=1):
|
|
|
343
343
|
return ctx.browser.css_find_elements("table")[nth]
|
|
344
344
|
except IndexError:
|
|
345
345
|
raise RuntimeError(
|
|
346
|
-
f"Cannot find table:{nth+1}. Please check your table data."
|
|
346
|
+
f"Cannot find table:{nth + 1}. Please check your table data."
|
|
347
347
|
)
|
|
348
348
|
|
|
349
349
|
|
|
@@ -364,7 +364,7 @@ def click_table_cell(ctx, row, column, table):
|
|
|
364
364
|
cell = row.find_elements(By.CSS_SELECTOR, "td")[column]
|
|
365
365
|
except IndexError:
|
|
366
366
|
raise RuntimeError(
|
|
367
|
-
f"Cannot find table:{table+1},row:{row+1},column:{column+1}. Please check your table data."
|
|
367
|
+
f"Cannot find table:{table + 1},row:{row + 1},column:{column + 1}. Please check your table data."
|
|
368
368
|
)
|
|
369
369
|
ctx.browser.click(cell)
|
|
370
370
|
|
|
@@ -409,7 +409,7 @@ def wait_click_table_cell_matching_text(ctx, column, match_text, table):
|
|
|
409
409
|
cell = row[0].find_elements(By.CSS_SELECTOR, "td")[column]
|
|
410
410
|
except IndexError:
|
|
411
411
|
raise RuntimeError(
|
|
412
|
-
f"Cannot find table:{table+1},column:{column+1},text:{match_text}. Please check your table data."
|
|
412
|
+
f"Cannot find table:{table + 1},column:{column + 1},text:{match_text}. Please check your table data."
|
|
413
413
|
)
|
|
414
414
|
|
|
415
415
|
ctx.browser.click(cell)
|
|
@@ -431,7 +431,7 @@ def wait_table_row_count(ctx, row_count, table):
|
|
|
431
431
|
return
|
|
432
432
|
else:
|
|
433
433
|
raise RuntimeError(
|
|
434
|
-
f"Unable to find {row_count} rows in table {table+1}. Please check your table data."
|
|
434
|
+
f"Unable to find {row_count} rows in table {table + 1}. Please check your table data."
|
|
435
435
|
)
|
|
436
436
|
|
|
437
437
|
retry(find_table_row_count)(ctx, row_count, table)
|
cucu/utils.py
CHANGED
|
@@ -9,6 +9,7 @@ import pkgutil
|
|
|
9
9
|
import shutil
|
|
10
10
|
|
|
11
11
|
import humanize
|
|
12
|
+
from selenium.webdriver.common.by import By
|
|
12
13
|
from tabulate import DataRow, TableFormat, tabulate
|
|
13
14
|
from tenacity import (
|
|
14
15
|
after_log,
|
|
@@ -284,3 +285,28 @@ def get_tab_information(ctx):
|
|
|
284
285
|
"current_title": driver.title,
|
|
285
286
|
"current_url": driver.current_url,
|
|
286
287
|
}
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
def find_n_click_input_parent_label(ctx, input_element):
|
|
291
|
+
"""
|
|
292
|
+
Clicks the nearest parent <label> of an input elemnt (if input is visually hidden or size is zero).
|
|
293
|
+
"""
|
|
294
|
+
try:
|
|
295
|
+
# Find the closest ancestor <label> element
|
|
296
|
+
label = input_element.find_element(By.XPATH, "ancestor::label[1]")
|
|
297
|
+
|
|
298
|
+
if label and label.is_displayed():
|
|
299
|
+
ctx.browser.click(label)
|
|
300
|
+
logger.debug("Successfully clicked the parent label.")
|
|
301
|
+
else:
|
|
302
|
+
logger.warning("Parent label is not displayed or not found.")
|
|
303
|
+
|
|
304
|
+
except Exception as e:
|
|
305
|
+
logger.error(
|
|
306
|
+
f"Click on parent label failed (possibly missing label ancestor): {e}"
|
|
307
|
+
)
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
def is_element_size_zero(element):
|
|
311
|
+
size = element.size
|
|
312
|
+
return size["width"] == 0 and size["height"] == 0
|
|
@@ -7,14 +7,14 @@ cucu/helpers.py,sha256=l_YMmbuXjtBRo-MER-qe6soUIyjt0ey2BoSgWs4zYwA,36285
|
|
|
7
7
|
cucu/hooks.py,sha256=3Z1mavU42XMQ0DZ7lVWwTB-BJYHRyYUOzzOtmkdIsow,7117
|
|
8
8
|
cucu/logger.py,sha256=Y4eHmNFCphqXEzUQD-DJ8dsaqTNtqxmaKSCdo66Oc-g,3349
|
|
9
9
|
cucu/page_checks.py,sha256=CW1AqIxZ7rrLxpkf8nEFwcw6amnoN3Tb-acoN8dq3g0,2179
|
|
10
|
-
cucu/utils.py,sha256
|
|
10
|
+
cucu/utils.py,sha256=-L0N-LdW1VxUEpzfSOiZ9nVUhKnYfb1ncE90CQWmQxw,9876
|
|
11
11
|
cucu/browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
cucu/browser/core.py,sha256=
|
|
12
|
+
cucu/browser/core.py,sha256=5_eXBvYGv6egKnIbdtxLQsbkgQJWx9qWGl1vn4xYEw4,2357
|
|
13
13
|
cucu/browser/frames.py,sha256=IW7kzRJn5PkbMaovIelAeCWO-T-2sOTwqaYBw-0-LKU,3545
|
|
14
14
|
cucu/browser/selenium.py,sha256=oyXnf8jNPX3EqvaFYDhZuxoxGnK8cw__7CxMZTG1hfU,11603
|
|
15
15
|
cucu/browser/selenium_tweaks.py,sha256=oUIhWVhBZbc9qsmQUJMpIr9uUWKxtgZBcnySWU6Yttk,879
|
|
16
16
|
cucu/cli/__init__.py,sha256=uXX5yVG1konJ_INdlrcfMg-Tt_5_cSx29Ed8R8v908A,62
|
|
17
|
-
cucu/cli/core.py,sha256=
|
|
17
|
+
cucu/cli/core.py,sha256=sAvRIi_2cd4OQiKKISk7Web5-u5KWK1DNbayqav8tpY,26915
|
|
18
18
|
cucu/cli/run.py,sha256=uZOf1c5zAXT0ThaQvrb5kgXGwl80lAtHaTm5dDwolng,5909
|
|
19
19
|
cucu/cli/steps.py,sha256=lg5itVH_C-0_3RelWXv9X2qQUHggdxuxLCGwH5l1bf4,4210
|
|
20
20
|
cucu/cli/thread_dumper.py,sha256=Z3XnYSxidx6pqjlQ7zu-TKMIYZWk4z9c5YLdPkcemiU,1593
|
|
@@ -23,8 +23,8 @@ cucu/edgedriver_autoinstaller/__init__.py,sha256=fo6xJJPvcc5Xvni8epXfxDoPxJH5_b6
|
|
|
23
23
|
cucu/edgedriver_autoinstaller/utils.py,sha256=iRKTww77CGaTAntt_QDvxlKPxpMU4otx95OeD97khcM,6802
|
|
24
24
|
cucu/external/jquery/jquery-3.5.1.min.js,sha256=9_aliU8dGd2tb6OSsuzixeV4y_faTqgFtohetphbbj0,89476
|
|
25
25
|
cucu/formatter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
cucu/formatter/cucu.py,sha256=
|
|
27
|
-
cucu/formatter/json.py,sha256=
|
|
26
|
+
cucu/formatter/cucu.py,sha256=JCSrDjuZM7iu83s1-kNuP2usDkOx_U6U0v15eVmmyrI,9298
|
|
27
|
+
cucu/formatter/json.py,sha256=8X1n3jBAlzv8rC_S-Jp-U3cjPnvGzXM6MBjAudgrAPU,10596
|
|
28
28
|
cucu/formatter/junit.py,sha256=aJ9dGLbamMH-wUi_msF66_-_c_YUq07-8_wCNEjUju4,10129
|
|
29
29
|
cucu/fuzzy/__init__.py,sha256=ce4JRmaBF6oab6U99Qbpt7DrD3elhH32__-ND6fw5xc,104
|
|
30
30
|
cucu/fuzzy/core.py,sha256=tmQKX_Ni-2ohoxzctRUg2x7zMeEW8MlJJmpU3PfTmvQ,3153
|
|
@@ -48,7 +48,7 @@ cucu/matcher/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
48
48
|
cucu/matcher/core.py,sha256=o2j4NNGORZ0BtHEbBTeE2T_vi6EJlWVkrjOoS2L7UNk,1032
|
|
49
49
|
cucu/reporter/__init__.py,sha256=nS2lIp43gifspIDgieSS3dzBMvnKfd--O8Pb3RTr4yE,71
|
|
50
50
|
cucu/reporter/favicon.png,sha256=9ikXLAmzfQzy2NQps_8CGaZog2FvQrOX8nnSZ0e1UmM,2161
|
|
51
|
-
cucu/reporter/html.py,sha256=
|
|
51
|
+
cucu/reporter/html.py,sha256=OsMGmw2LRrdMJU18RUEE9a_di_mnPrT60AtgHu4eu3A,16677
|
|
52
52
|
cucu/reporter/external/bootstrap.min.css,sha256=eHMy9CG2IWZObUwZAkNVWc6DTIds3OavzUguDY0VsIo,163874
|
|
53
53
|
cucu/reporter/external/bootstrap.min.js,sha256=eZoFcnJ9Ooanw0yPsrZ3CHiXIYUBW-7_hNNqch50sLI,48945
|
|
54
54
|
cucu/reporter/external/dataTables.bootstrap.min.css,sha256=AVjWb9eSGQ0-3f4WNiVU1pfkyoNvthJdaw_IxK9Y2c0,10611
|
|
@@ -64,8 +64,8 @@ cucu/reporter/templates/scenario.html,sha256=Eomxn7_gxrOeWPXKQrnUt3pgKlWeC3PTiM0
|
|
|
64
64
|
cucu/steps/__init__.py,sha256=seSmASBlWu6-6wbFbvEbPwigBcRXiYP18C4X_2cW8Ng,753
|
|
65
65
|
cucu/steps/base_steps.py,sha256=0fPvdaKoan8lMAKrDnK0-zrALpxm11P1zVAY5CN7iXA,1893
|
|
66
66
|
cucu/steps/browser_steps.py,sha256=RJmQcvA7S5toiJSBCOzhwZwFP4YCA4cxO36HSk4wiHY,10381
|
|
67
|
-
cucu/steps/button_steps.py,sha256=
|
|
68
|
-
cucu/steps/checkbox_steps.py,sha256=
|
|
67
|
+
cucu/steps/button_steps.py,sha256=ej3urWbdffi7HimmPbrdUBkdLIA_xYcfLlsqOF-5_5s,2713
|
|
68
|
+
cucu/steps/checkbox_steps.py,sha256=B2HKFA-uwsrCa1DmzS7u1o1XH12b5BzLPg5qY1c445E,3386
|
|
69
69
|
cucu/steps/command_steps.py,sha256=nVCc8-TEitetk-zhk4z1wa0owqLQyHeQVH5THioUw-k,5094
|
|
70
70
|
cucu/steps/draggable_steps.py,sha256=lnQLicp0GZJaxD_Qm2P13ruUZAsl3mptwaI5-SQ6XJ0,4655
|
|
71
71
|
cucu/steps/dropdown_steps.py,sha256=abykG--m79kDQ4LU1tm73fNLFPmrKDavyFzJb2MYCu0,15601
|
|
@@ -77,17 +77,17 @@ cucu/steps/input_steps.py,sha256=TYQhkmke-W5dJt4EsU-JHjRwnbd7zvXnhEjw5PQ4Wxs,967
|
|
|
77
77
|
cucu/steps/link_steps.py,sha256=MQLxyjCbiF2dOsmj6IrKKlRYhaqJjxDUNTf5Cau4J0w,1625
|
|
78
78
|
cucu/steps/menuitem_steps.py,sha256=9JlaPO6BSmW2GPmk43gxGy5S03rEtEx4KE0uCFBkjk0,1133
|
|
79
79
|
cucu/steps/platform_steps.py,sha256=G7HtBMhdRu58-2_LdXC5rkJM9F1ivGdlRa9BzTiHaaY,754
|
|
80
|
-
cucu/steps/radio_steps.py,sha256=
|
|
80
|
+
cucu/steps/radio_steps.py,sha256=FygUNPCEBXzmzGMHL8DYNtLe9q4qjeyITiRLH-5Nbag,5931
|
|
81
81
|
cucu/steps/section_steps.py,sha256=XeSvLkf7o_VIoVgwyxA36-9H_9XIUiAAJ6EbIqeshIE,645
|
|
82
82
|
cucu/steps/step_utils.py,sha256=Chd0NQbMnfAEJmQkoVQRMbVRbCnJIBvVeH7CmXrCMm0,1417
|
|
83
83
|
cucu/steps/tab_steps.py,sha256=TVVytkihvJ2GYQ9bwAs1CVzb-twzUq11QONlEbd6uO0,1818
|
|
84
|
-
cucu/steps/table_steps.py,sha256=
|
|
84
|
+
cucu/steps/table_steps.py,sha256=5bBT2HcuLy-wJ8vUschqkHEED-_GPPJwqdpLFlS4e9c,13744
|
|
85
85
|
cucu/steps/tables.js,sha256=Os2a7Fo-cg03XVli7USvcnBVad4N7idXr-HBuzdLvVQ,945
|
|
86
86
|
cucu/steps/text_steps.py,sha256=Jj_GHoHeemNwVdUOdqcehArNp7WM-WMjljA4w0pLXuw,2576
|
|
87
87
|
cucu/steps/variable_steps.py,sha256=WSctH3_xcxjijGPYZlxp-foC_SIAAKtF__saNtgZJbk,2966
|
|
88
88
|
cucu/steps/webserver_steps.py,sha256=wWkpSvcSMdiskPkh4cqlepWx1nkvEpTU2tRXQmPDbyo,1410
|
|
89
|
-
cucu-1.2.
|
|
90
|
-
cucu-1.2.
|
|
91
|
-
cucu-1.2.
|
|
92
|
-
cucu-1.2.
|
|
93
|
-
cucu-1.2.
|
|
89
|
+
cucu-1.2.2.dist-info/METADATA,sha256=VSlGlTNi1IGBXUz3pB6Bx7MvwUgJ5bMw2LESVv0HKqs,16535
|
|
90
|
+
cucu-1.2.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
91
|
+
cucu-1.2.2.dist-info/entry_points.txt,sha256=YEXTyEfIZbcV0GJ9R3Gfu3j6DcOJJK7_XHkJqE3Yiao,39
|
|
92
|
+
cucu-1.2.2.dist-info/licenses/LICENSE,sha256=WfgJYF9EaQoL_OeWr2Qd0MxhhFegDfzWSUmvDTwFxis,1721
|
|
93
|
+
cucu-1.2.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|