* Check if an app is not installed. * * ```js * I.seeAppIsNotInstalled("com.example.android.apis"); * ``` * * @param {string} bundleId String ID of bundled app * @return {Promise } * * Appium: support only Android
(bundleId)
| 610 | * Appium: support only Android |
| 611 | */ |
| 612 | async seeAppIsNotInstalled(bundleId) { |
| 613 | onlyForApps.call(this, supportedPlatform.android) |
| 614 | const res = await this.browser.isAppInstalled(bundleId) |
| 615 | return truth(`app ${bundleId}`, 'not to be installed').negate(res) |
| 616 | } |
| 617 | |
| 618 | /** |
| 619 | * Install an app on device. |
no test coverage detected