io.appium.settings
Version:
App for dealing with Android settings
12 lines • 456 B
TypeScript
import type { SettingsApp } from '../client';
/**
* Change the state of bluetooth on the device under test.
*
* @param on - True to enable and false to disable it
*/
export declare function setBluetoothState(this: SettingsApp, on: boolean): Promise<void>;
/**
* Unpairs all previously paired bluetooth devices if any exist
*/
export declare function unpairAllBluetoothDevices(this: SettingsApp): Promise<void>;
//# sourceMappingURL=bluetooth.d.ts.map