wdio-ui5-service
Version:
WebdriverIO plugin for testing UI5 browser-based apps
13 lines • 898 B
TypeScript
import type { wdi5Control, clientSide_ui5Response } from "../types/wdi5.types.js";
/**
* Execute method on the ui5 control through the browser. If element "is stale" we first retrieve it
* from the browser again
* @param {Object} webElement representation of a webElement in node depending on the protocol
* @param {String} methodName function name to be called on the ui5 control
* @param {WebdriverIO.Browser} browserInstance
* @param {Object} args proxied arguments to UI5 control method at runtime
* @param {WDI5Control} wdi5Control wdi5 representation of the ui5 control
*/
declare function clientSide_executeControlMethod(webElement: WebdriverIO.Element, methodName: string, browserInstance: WebdriverIO.Browser, args: unknown[], wdi5Control: wdi5Control): Promise<clientSide_ui5Response>;
export { clientSide_executeControlMethod };
//# sourceMappingURL=executeControlMethod.d.ts.map