appwright
Version:
E2E mobile app testing done right, with the Playwright test runner
23 lines (22 loc) • 970 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WebDriverErrors = exports.ScrollDirection = exports.DeviceOrientation = exports.Platform = void 0;
var Platform;
(function (Platform) {
Platform["ANDROID"] = "android";
Platform["IOS"] = "ios";
})(Platform || (exports.Platform = Platform = {}));
var DeviceOrientation;
(function (DeviceOrientation) {
DeviceOrientation["PORTRAIT"] = "portrait";
DeviceOrientation["LANDSCAPE"] = "landscape";
})(DeviceOrientation || (exports.DeviceOrientation = DeviceOrientation = {}));
var ScrollDirection;
(function (ScrollDirection) {
ScrollDirection["UP"] = "up";
ScrollDirection["DOWN"] = "down";
})(ScrollDirection || (exports.ScrollDirection = ScrollDirection = {}));
var WebDriverErrors;
(function (WebDriverErrors) {
WebDriverErrors["StaleElementReferenceError"] = "stale element reference";
})(WebDriverErrors || (exports.WebDriverErrors = WebDriverErrors = {}));
;