Sha256: 3207b4b2a54035a6d4e392bde1e35f96db02e05b14ab7a9b62eacab183b514ae
Contents?: true
Size: 551 Bytes
Versions: 28
Compression:
Stored size: 551 Bytes
Contents
describe 'install' do # To Do: Blocked on https://github.com/appium/appium/issues/3032 def pkg 'io.appium.android.apis' end def installed app_installed?(pkg).must_equal true end def not_installed app_installed?(pkg).must_equal false end t 'install/uninstall' do installed remove_app 'io.appium.android.apis' not_installed install_app caps[:app] installed end # no way to launch apk after it's uninstalled/installed # blocked on: https://github.com/appium/appium/issues/2969 # launch_app end
Version data entries
28 entries across 28 versions & 1 rubygems