We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c158f3b commit 3b84d7aCopy full SHA for 3b84d7a
docs/helpers/Appium.md
@@ -871,7 +871,7 @@ Close the given application.
871
I.closeApp();
872
```
873
874
-Returns **[Promise][6]<void>** Appium: support only iOS
+Returns **[Promise][6]<void>** Appium: support both Android and iOS
875
876
### appendField
877
lib/helper/Appium.js
@@ -1424,10 +1424,10 @@ class Appium extends Webdriver {
1424
*
1425
* @return {Promise<void>}
1426
1427
- * Appium: support only iOS
+ * Appium: support both Android and iOS
1428
*/
1429
async closeApp() {
1430
- onlyForApps.call(this, 'iOS');
+ onlyForApps.call(this);
1431
return this.browser.closeApp();
1432
}
1433
0 commit comments