UNPKG

appium-xcuitest-driver

Version:

Appium driver for iOS using XCUITest for backend

28 lines 1.49 kB
declare const GUINEA_PIG_PAGE: string; declare const GUINEA_PIG_SCROLLABLE_PAGE: string; declare const GUINEA_PIG_APP_BANNER_PAGE: string; declare const GUINEA_PIG_FRAME_PAGE: string; declare const GUINEA_PIG_IFRAME_PAGE: string; declare const PHISHING_END_POINT = "http://testsafebrowsing.appspot.com/s/phishing.html"; declare const APPIUM_IMAGE: string; declare const newCookie: { name: string; value: string; }; declare const oldCookie1: { name: string; value: string; }; declare const oldCookie2: { name: string; value: string; }; declare function doesIncludeCookie(cookies: any, cookie: any): void; declare function doesNotIncludeCookie(cookies: any, cookie: any): void; declare function spinTitle(driver: any): Promise<any>; declare function spinBodyIncludes(driver: any, expected: any): Promise<void | null>; declare function spinTitleEquals(driver: any, expectedTitle: any, tries?: number, interval?: number): Promise<void>; declare function spinWait(fn: any, waitMs?: number, intMs?: number): Promise<void>; declare function openPage(driver: any, url: any, tries?: number, interval?: number): Promise<void>; export { spinTitle, spinTitleEquals, spinWait, openPage, GUINEA_PIG_PAGE, GUINEA_PIG_FRAME_PAGE, GUINEA_PIG_IFRAME_PAGE, PHISHING_END_POINT, APPIUM_IMAGE, GUINEA_PIG_SCROLLABLE_PAGE, GUINEA_PIG_APP_BANNER_PAGE, doesIncludeCookie, doesNotIncludeCookie, newCookie, oldCookie1, oldCookie2, spinBodyIncludes, }; //# sourceMappingURL=helpers.d.ts.map