UNPKG

donobu

Version:

Create browser automations with an LLM agent and replay them as Playwright scripts.

13 lines 459 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PageClosedException = void 0; /** * This exception is thrown if operations are being performed on a page that has been closed. */ class PageClosedException extends Error { constructor() { super('Operation failed due to the webpage no longer existing.'); } } exports.PageClosedException = PageClosedException; //# sourceMappingURL=PageClosedException.js.map