appium-mac2-driver
Version:
XCTest-based Appium driver for macOS apps automation
56 lines • 1.33 kB
TypeScript
declare const MAC2_CONSTRAINTS: {
readonly systemPort: {
readonly isNumber: true;
};
readonly systemHost: {
readonly isString: true;
};
readonly showServerLogs: {
readonly isBoolean: true;
};
readonly bootstrapRoot: {
readonly isString: true;
};
readonly serverStartupTimeout: {
readonly isNumber: true;
};
readonly bundleId: {
readonly isString: true;
};
readonly arguments: {
readonly isArray: true;
};
readonly environment: {
readonly isObject: true;
};
readonly noReset: {
readonly isBoolean: true;
};
readonly skipAppKill: {
readonly isBoolean: true;
};
readonly prerun: {
readonly isObject: true;
};
readonly postrun: {
readonly isObject: true;
};
readonly webDriverAgentMacUrl: {
readonly isString: true;
};
readonly appPath: {
readonly isString: true;
};
readonly appLocale: {
readonly isObject: true;
};
readonly appTimeZone: {
readonly isString: true;
};
readonly initialDeeplinkUrl: {
readonly isString: true;
};
};
export default MAC2_CONSTRAINTS;
export type Mac2Constraints = typeof MAC2_CONSTRAINTS;
//# sourceMappingURL=constraints.d.ts.map