Sha256: bf0b8781d9752a84384c1a2f2af5c1bbe7f73c476f7ac17ac8dfa18ce434912f

Contents?: true

Size: 632 Bytes

Versions: 82

Compression:

Stored size: 632 Bytes

Contents

def app_path
  ENV['APP_BUNDLE_PATH'] || (defined?(APP_BUNDLE_PATH) && APP_BUNDLE_PATH)
end

Given /^I launch the app$/ do
  # latest sdk and iphone by default
  launch_app app_path
end

Given /^I launch the app using iOS (\d\.\d)$/ do |sdk|
  # You can grab a list of the installed SDK with sim_launcher
  # > run sim_launcher from the command line
  # > open a browser to http://localhost:8881/showsdks
  # > use one of the sdk you see in parenthesis (e.g. 4.2)
  launch_app app_path, sdk
end

Given /^I launch the app using iOS (\d\.\d) and the (iphone|ipad) simulator$/ do |sdk, version|
  launch_app app_path, sdk, version
end

Version data entries

82 entries across 82 versions & 6 rubygems

Version Path
frank-cucumber-0.9.5.pre8 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.5.pre7 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.5.pre6 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.5.pre5 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.5.pre4 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.5.pre3 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.5.pre2 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.5.pre1 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.4 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.3 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.1 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.9.0 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.17 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.16 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.15 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.14 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.13 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.12 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.11 frank-skeleton/features/step_definitions/launch_steps.rb
frank-cucumber-0.8.10 frank-skeleton/features/step_definitions/launch_steps.rb