lib/calabash-android/operations.rb in calabash-android-0.4.3.pre3 vs lib/calabash-android/operations.rb in calabash-android-0.4.3.pre4
- old
+ new
@@ -295,21 +295,21 @@
""
end
end
def wake_up
- wake_up_cmd = "#{adb_command} shell am start -a android.intent.action.MAIN -n sh.calaba.android.test/sh.calaba.instrumentationbackend.WakeUp"
+ wake_up_cmd = "#{adb_command} shell am start -a android.intent.action.MAIN -n #{package_name(@test_server_path)}/sh.calaba.instrumentationbackend.WakeUp"
log "Waking up device using:"
log wake_up_cmd
raise "Could not wake up the device" unless system(wake_up_cmd)
retriable :tries => 10, :interval => 1 do
raise "Could not remove the keyguard" if keyguard_enabled?
end
end
def clear_app_data
- cmd = "#{adb_command} shell am instrument sh.calaba.android.test/sh.calaba.instrumentationbackend.ClearAppData"
+ cmd = "#{adb_command} shell am instrument #{package_name(@test_server_path)}/sh.calaba.instrumentationbackend.ClearAppData"
raise "Could not clear data" unless system(cmd)
end
def start_test_server_in_background(options={})
raise "Will not start test server because of previous failures." if ::Cucumber.wants_to_quit