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

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

  step 'I press "g" and "p"' do
    find('body').native.send_key('g')
    find('body').native.send_key('p')
  end

  step 'I press "g" and "i"' do
    find('body').native.send_key('g')
    find('body').native.send_key('i')
  end

  step 'I press "g" and "m"' do
    find('body').native.send_key('g')
    find('body').native.send_key('m')
  end
end