@wdio/protocols
Version:
Utility package providing information about automation protocols
52 lines • 1.92 kB
TypeScript
export default interface MjsonwpCommands {
/**
* Mjsonwp Protocol Command
*
* No description available, please see reference link.
* @ref https://github.com/appium/appium-base-driver/blob/master/docs/mjsonwp/protocol-methods.md#mobile-json-wire-protocol-endpoints
* @deprecated In Appium 2.0, this method is marked as deprecated and currently has no available alternatives.
*
*/
getPageIndex(): Promise<string>;
/**
* Mjsonwp Protocol Command
*
* No description available, please see reference link.
* @ref https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#device-modes
*
*/
getNetworkConnection(): Promise<number>;
/**
* Mjsonwp Protocol Command
*
* No description available, please see reference link.
* @ref https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#device-modes
*
*/
setNetworkConnection(type: number): Promise<void>;
/**
* Mjsonwp Protocol Command
*
* No description available, please see reference link.
* @ref https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#touch-gestures
*
*/
touchPerform(actions: object[]): Promise<void>;
/**
* Mjsonwp Protocol Command
*
* No description available, please see reference link.
* @ref https://github.com/SeleniumHQ/mobile-spec/blob/master/spec-draft.md#touch-gestures
*
*/
multiTouchPerform(actions: object[], elementId?: object[]): Promise<void>;
/**
* Mjsonwp Protocol Command
*
* No description available, please see reference link.
* @ref https://github.com/appium/appium-base-driver/blob/master/docs/mjsonwp/protocol-methods.md#mobile-json-wire-protocol-endpoints
*
*/
receiveAsyncResponse(status: string, value: string): Promise<void>;
}
//# sourceMappingURL=mjsonwp.d.ts.map