UNPKG

appium-android-driver

Version:

Android UiAutomator and Chrome support for Appium

10 lines 602 B
/** * @module */ import type { AndroidDriver } from '../driver'; import type { Element } from '@appium/types'; import type { FindElementOpts } from './types'; export declare function findElOrEls(this: AndroidDriver, strategy: string, selector: string, mult: true, context?: string): Promise<Element[]>; export declare function findElOrEls(this: AndroidDriver, strategy: string, selector: string, mult: false, context?: string): Promise<Element>; export declare function doFindElementOrEls(this: AndroidDriver, params: FindElementOpts): Promise<Element | Element[]>; //# sourceMappingURL=find.d.ts.map