Skip to content

Draft: Speed up tests by no waiting

Eduardo Sanz García requested to merge eduardosanz/speed-up-tests into master

What does this MR do and why?

Speed up test by no waiting

Applied this replacements:

sed -i '' 's/\.not_to assert_selector/\.to assert_no_selector/' $@
sed -i '' 's/\.not_to assert_text/\.to assert_no_text/' $@
sed -i '' 's/\.not_to has_button/\.to has_no_button/' $@
sed -i '' 's/\.not_to has_checked_field/\.to has_no_checked_field/' $@
sed -i '' 's/\.not_to has_css/\.to has_no_css/' $@
sed -i '' 's/\.not_to has_field/\.to has_no_field/' $@
sed -i '' 's/\.not_to has_link/\.to has_no_link/' $@
sed -i '' 's/\.not_to has_select/\.to has_no_select/' $@
sed -i '' 's/\.not_to has_selector/\.to has_no_selector/' $@
sed -i '' 's/\.not_to has_table/\.to has_no_table/' $@
sed -i '' 's/\.not_to has_text/\.to has_no_text/' $@
sed -i '' 's/\.not_to has_unchecked_field/\.to has_no_unchecked_field/' $@
sed -i '' 's/\.not_to has_xpath/\.to has_no_xpath/' $@
sed -i '' 's/\.not_to have_button/\.to have_no_button/' $@
sed -i '' 's/\.not_to have_checked_field/\.to have_no_checked_field/' $@
sed -i '' 's/\.not_to have_css/\.to have_no_css/' $@
sed -i '' 's/\.not_to have_field/\.to have_no_field/' $@
sed -i '' 's/\.not_to have_link/\.to have_no_link/' $@
sed -i '' 's/\.not_to have_select/\.to have_no_select/' $@
sed -i '' 's/\.not_to have_selector/\.to have_no_selector/' $@
sed -i '' 's/\.not_to have_table/\.to have_no_table/' $@
sed -i '' 's/\.not_to have_text/\.to have_no_text/' $@
sed -i '' 's/\.not_to have_unchecked_field/\.to have_no_unchecked_field/' $@
sed -i '' 's/\.not_to have_xpath/\.to have_no_xpath/' $@

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Screenshots or screen recordings

N/A

How to set up and validate locally

N/A

Edited by Eduardo Sanz García

Merge request reports