appium-mac2-driver
Version:
XCTest-based Appium driver for macOS apps automation
14 lines • 653 B
TypeScript
/**
* Opens the given URL with the default or the given application.
* Xcode must be at version 14.3+.
*
* @this {Mac2Driver}
* @param {string} url The URL to be opened.
* @param {string} [bundleId] The bundle identifier of an application to open
* the given url with. If not provided then the default application
* for the given url scheme is going to be used.
* @returns {Promise<unknown>}
*/
export function macosDeepLink(this: import("../driver").Mac2Driver, url: string, bundleId?: string): Promise<unknown>;
export type Mac2Driver = import("../driver").Mac2Driver;
//# sourceMappingURL=navigation.d.ts.map