* Check if an app is installed. * * ```js * I.seeAppIsInstalled("com.example.android.apis"); * ``` * * @param {string} bundleId String ID of bundled app * @return {Promise } * * Appium: support only Android
(bundleId)
| 592 | * Appium: support only Android |
| 593 | */ |
| 594 | async seeAppIsInstalled(bundleId) { |
| 595 | onlyForApps.call(this, supportedPlatform.android) |
| 596 | const res = await this.browser.isAppInstalled(bundleId) |
| 597 | return truth(`app ${bundleId}`, 'to be installed').assert(res) |
| 598 | } |
| 599 | |
| 600 | /** |
| 601 | * Check if an app is not installed. |
no test coverage detected