debian-mirror-gitlab/spec/support/helpers/board_helpers.rb

17 lines
326 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
module BoardHelpers
def click_card(card)
within card do
first('.card-number').click
end
wait_for_sidebar
end
def wait_for_sidebar
# loop until the CSS transition is complete
Timeout.timeout(0.5) do
loop until evaluate_script('$(".right-sidebar").outerWidth()') == 290
end
end
end