Sha256: 92f92eec98031ef0fc3fd3a648c8c229c473c84fe14fce81a6289c4a28eb52a5

Contents?: true

Size: 613 Bytes

Versions: 2

Compression:

Stored size: 613 Bytes

Contents

Then /^I should see the "(.*?)" list item$/ do |list_item|
  on(MainMenuScreen).should have_text list_item
end

When /^I press the "(.*?)" list item$/ do |list_item|
  on(MainMenuScreen).send "#{list_item}_list_item_text"
end

When /^I press the Back button$/ do
  on(MainMenuScreen) do |screen|
    screen.wait_for_text 'Accessibility Service'
    screen.back
  end
end

When /^I scroll down to the bottom of the screen$/ do
  on(MainMenuScreen).scroll_down
end

When /^I scroll up to the top of the screen$/ do
  on(MainMenuScreen).scroll_up
end

When /^I hit the enter key$/ do
  on(MainMenuScreen).enter
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gametel-0.5 features/step_definitions/main_screen_steps.rb
gametel-0.4 features/step_definitions/main_screen_steps.rb