playwright-pom-materials
Version:
Playwright POM materials
10 lines (9 loc) • 315 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.sleepFunc = void 0;
const locator_utils_1 = require("./locator_utils");
const sleepFunc = (x) => {
const frame = (0, locator_utils_1.getFrame)(x);
return (ms) => frame.waitForTimeout(ms);
};
exports.sleepFunc = sleepFunc;