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