gitlab-org--gitlab-foss/spec/support/helpers/drag_to_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
998 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-01-06 16:52:18 +00:00
module DragTo
# rubocop:disable Metrics/ParameterLists
def drag_to(list_from_index: 0, from_index: 0, to_index: 0, list_to_index: 0, selector: '', scrollable: 'body', duration: 1000, perform_drop: true, extra_height: 0)
js = <<~JS
simulateDrag({
scrollable: document.querySelector('#{scrollable}'),
duration: #{duration},
from: {
el: document.querySelectorAll('#{selector}')[#{list_from_index}],
index: #{from_index}
},
to: {
el: document.querySelectorAll('#{selector}')[#{list_to_index}],
index: #{to_index}
},
performDrop: #{perform_drop},
extraHeight: #{extra_height}
});
JS
evaluate_script(js)
2017-01-06 16:52:18 +00:00
Timeout.timeout(Capybara.default_max_wait_time) do
2017-04-04 17:47:12 +00:00
loop while drag_active?
2017-01-06 16:52:18 +00:00
end
end
# rubocop:enable Metrics/ParameterLists
2017-01-06 16:52:18 +00:00
def drag_active?
2017-04-04 17:47:12 +00:00
page.evaluate_script('window.SIMULATE_DRAG_ACTIVE').nonzero?
2017-01-06 16:52:18 +00:00
end
end