UNPKG

@appium/base-driver

Version:

Base driver class for Appium drivers

11 lines 586 B
import type { Constraints } from '@appium/types'; import type { BaseDriver } from '../basedriver/driver'; /** * Resolves the name of extension method corresponding to an `execute` command string * based on the driver's `executeMethodMap`. * * @param commandName - The command name to resolve. * @returns The resolved extension command name if a mapping exists. Otherwise, the original command name. */ export declare function resolveExecuteExtensionName<C extends Constraints>(this: BaseDriver<C>, commandName: string): string; //# sourceMappingURL=extension-command-name.d.ts.map