webdriverio-automation
Version:
WebdriverIO-Automation android ios project
61 lines (49 loc) • 2.3 kB
TypeScript
/// <reference types="webdriverio/webdriverio-core"/>
declare namespace WebdriverIO {
function remote(
options?: RemoteOptions,
modifier?: (...args: any[]) => any
): Promise<BrowserObject>;
function attach(
options: WebDriver.AttachSessionOptions,
): BrowserObject;
function multiremote(
options: MultiRemoteOptions
): Promise<BrowserObject>;
interface Browser {
/**
* execute any async action within your test spec
*/
call: <T>(callback: (...args: any[]) => Promise<T>) => Promise<T>;
/**
* Inject a snippet of JavaScript into the page for execution in the context of the currently selected frame.
* The executed script is assumed to be synchronous and the result of evaluating the script is returned to
* the client.
*/
execute: <T>(script: string | ((...arguments: any[]) => T), ...arguments: any[]) => Promise<T>;
// there is no way to add callback as last parameter after `...args`.
// https://github.com/Microsoft/TypeScript/issues/1360
// executeAsync: <T>(script: string | ((...arguments: any[], callback: (result: T) => void) => void), ...arguments: any[]) => Promise<T>;
/**
* Inject a snippet of JavaScript into the page for execution in the context of the currently selected frame.
* The executed script is assumed to be asynchronous and must signal that is done by invoking
* the provided callback, which is always provided as the final argument to the function. The value
* to this callback will be returned to the client.
*/
executeAsync: (script: string | ((...arguments: any[]) => void), ...arguments: any[]) => Promise<any>;
}
interface BrowserObject extends WebDriver.ClientOptions, WebDriver.ClientAsync, Browser { }
}
declare var browser: WebdriverIO.BrowserObject;
declare var driver: WebdriverIO.BrowserObject;
/**
* find a single element on the page.
*/
declare var $: (selector: string | Function) => Promise<WebdriverIO.Element>;
/**
* find multiple elements on the page.
*/
declare var $$: (selector: string | Function) => Promise<WebdriverIO.ElementArray>;
declare module "webdriverio" {
export = WebdriverIO
}