@uuv/playwright
Version:
A solution to facilitate the writing and execution of E2E tests understandable by any human being using cucumber(BDD) and playwright
34 lines (33 loc) • 5.06 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getTimeout = exports.typeFocusedElement = exports.type = exports.clickFocusedElement = exports.click = exports.findWithAriaLabel = exports.findWithTestId = exports.findWithSelector = exports.findWithRoleAndNameAndValue = exports.findWithRoleAndNameEnabled = exports.findWithRoleAndNameAndContentEnabled = exports.findWithRoleAndNameDisabled = exports.findWithRoleAndNameAndContentDisabled = exports.findWithRoleAndNameAndUnchecked = exports.findWithRoleAndNameAndChecked = exports.findWithRoleAndNameFocused = exports.findWithRoleAndNameAndContent = exports.notFoundWithRoleAndName = exports.findWithRoleAndName = exports.getWithAriaLabel = exports.getWithTestId = exports.getWithContent = exports.withinRoleAndName = exports.withinSelector = exports.deleteCookieByName = exports.getCookie = exports.addCookie = exports.getPageOrElement = void 0;
var core_engine_1 = require("./core-engine");
Object.defineProperty(exports, "getPageOrElement", { enumerable: true, get: function () { return core_engine_1.getPageOrElement; } });
Object.defineProperty(exports, "addCookie", { enumerable: true, get: function () { return core_engine_1.addCookie; } });
Object.defineProperty(exports, "getCookie", { enumerable: true, get: function () { return core_engine_1.getCookie; } });
Object.defineProperty(exports, "deleteCookieByName", { enumerable: true, get: function () { return core_engine_1.deleteCookieByName; } });
Object.defineProperty(exports, "withinSelector", { enumerable: true, get: function () { return core_engine_1.withinSelector; } });
Object.defineProperty(exports, "withinRoleAndName", { enumerable: true, get: function () { return core_engine_1.withinRoleAndName; } });
Object.defineProperty(exports, "getWithContent", { enumerable: true, get: function () { return core_engine_1.getWithContent; } });
Object.defineProperty(exports, "getWithTestId", { enumerable: true, get: function () { return core_engine_1.getWithTestId; } });
Object.defineProperty(exports, "getWithAriaLabel", { enumerable: true, get: function () { return core_engine_1.getWithAriaLabel; } });
Object.defineProperty(exports, "findWithRoleAndName", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndName; } });
Object.defineProperty(exports, "notFoundWithRoleAndName", { enumerable: true, get: function () { return core_engine_1.notFoundWithRoleAndName; } });
Object.defineProperty(exports, "findWithRoleAndNameAndContent", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameAndContent; } });
Object.defineProperty(exports, "findWithRoleAndNameFocused", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameFocused; } });
Object.defineProperty(exports, "findWithRoleAndNameAndChecked", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameAndChecked; } });
Object.defineProperty(exports, "findWithRoleAndNameAndUnchecked", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameAndUnchecked; } });
Object.defineProperty(exports, "findWithRoleAndNameAndContentDisabled", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameAndContentDisabled; } });
Object.defineProperty(exports, "findWithRoleAndNameDisabled", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameDisabled; } });
Object.defineProperty(exports, "findWithRoleAndNameAndContentEnabled", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameAndContentEnabled; } });
Object.defineProperty(exports, "findWithRoleAndNameEnabled", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameEnabled; } });
Object.defineProperty(exports, "findWithRoleAndNameAndValue", { enumerable: true, get: function () { return core_engine_1.findWithRoleAndNameAndValue; } });
Object.defineProperty(exports, "findWithSelector", { enumerable: true, get: function () { return core_engine_1.findWithSelector; } });
Object.defineProperty(exports, "findWithTestId", { enumerable: true, get: function () { return core_engine_1.findWithTestId; } });
Object.defineProperty(exports, "findWithAriaLabel", { enumerable: true, get: function () { return core_engine_1.findWithAriaLabel; } });
Object.defineProperty(exports, "click", { enumerable: true, get: function () { return core_engine_1.click; } });
Object.defineProperty(exports, "clickFocusedElement", { enumerable: true, get: function () { return core_engine_1.clickFocusedElement; } });
Object.defineProperty(exports, "type", { enumerable: true, get: function () { return core_engine_1.type; } });
Object.defineProperty(exports, "typeFocusedElement", { enumerable: true, get: function () { return core_engine_1.typeFocusedElement; } });
Object.defineProperty(exports, "getTimeout", { enumerable: true, get: function () { return core_engine_1.getTimeout; } });
Object.defineProperty(exports, "setTimeout", { enumerable: true, get: function () { return core_engine_1.setTimeout; } });