Welcome to mirror list, hosted at ThFree Co, Russian Federation.

board_helpers.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e145fed7331d2f3d5b5f17bb40598a589149916 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module BoardHelpers
  def click_card(card)
    within card do
      first('.board-card-number').click
    end
  end
end