issuable.rb 265 Bytes EditWeb IDE 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