๐ฌ .setSettings(settings)
This is a proposal for functionality that may be implemented in the future.
TODO: Description here.
Usage
device.setSettings(settings)
Parameters
settings(Object): TODO: Description here.
Returns
Promise: TODO: Description here.
Support
| Platform | Supported |
|---|---|
| iOS | Yes |
| Android | Yes |
| Web | Unknown |
Examples
Set device settings:
const { device } = require("appdriver");
(async () => {
await device.setSettings({
shouldUseCompactResponses: false,
ignoreUnimportantViews: true
});
})();