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

issuable.rb « shared « steps « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 41db2612f2623f75147e4e8fc98c5cc85c0589f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
module SharedIssuable
  include Spinach::DSL

  def edit_issuable
   find(:css, '.issuable-edit').click
  end

  step 'I click link "Edit" for the merge request' do
    edit_issuable
  end

  step 'I click link "Edit" for the issue' do
    edit_issuable
  end
end