* Get all the currently specified settings. * * ```js * let settings = await I.grabSettings(); * ``` * * @return {Promise } * * Appium: support Android and iOS
()
| 871 | * Appium: support Android and iOS |
| 872 | */ |
| 873 | async grabSettings() { |
| 874 | onlyForApps.call(this) |
| 875 | const res = await this.browser.getSettings() |
| 876 | this.debugSection('Settings', JSON.stringify(res)) |
| 877 | return res |
| 878 | } |
| 879 | |
| 880 | /** |
| 881 | * Switch to the specified context. |
no outgoing calls
no test coverage detected