* Install an app on device. * * ```js * I.installApp('/path/to/file.apk'); * ``` * @param {string} path path to apk file * @return {Promise } * * Appium: support only Android
(path)
| 627 | * Appium: support only Android |
| 628 | */ |
| 629 | async installApp(path) { |
| 630 | onlyForApps.call(this, supportedPlatform.android) |
| 631 | return this.browser.installApp(path) |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * Remove an app from the device. |
no outgoing calls
no test coverage detected