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

10 lines
151 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-09-19 09:01:01 -04:00
module BoardHelpers
def click_card(card)
within card do
first('.board-card-number').click
2017-09-19 09:01:01 -04:00
end
end
end