Add qa element

This commit is contained in:
Sanad Liaquat 2019-01-18 19:12:00 +05:00
parent d74b3cc186
commit 099613f412
2 changed files with 7 additions and 2 deletions

View File

@ -163,6 +163,7 @@ export default class LazyLoader {
img.removeAttribute('data-src');
img.classList.remove('lazy');
img.classList.add('js-lazy-loaded');
img.classList.add('qa-js-lazy-loaded');
}
}
}

View File

@ -10,12 +10,16 @@ module QA
element :label_svg
end
view 'app/assets/javascripts/lazy_loader.js' do
element :js_lazy_loaded
end
def go_to_new_label
# The 'labels.svg' takes a fraction of a second to load after which the "New label" button shifts up a bit
# This can cause webdriver to miss the hit so we wait for the svg to load (implicitly with has_css?)
# This can cause webdriver to miss the hit so we wait for the svg to load (implicitly with has_element?)
# before clicking the button.
within_element(:label_svg) do
has_css?('.js-lazy-loaded')
has_element?(:js_lazy_loaded)
end
click_element :label_create_new