@enekesabel/playwright-lite 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ import { Page, PlaywrightTestOptions } from "@playwright/test";
2
+ //#region src/index.d.ts
3
+ type CreatePageOptions = Partial<Pick<PlaywrightTestOptions, "testIdAttribute" | "actionTimeout" | "navigationTimeout">>;
4
+ /** Creates a Page for the current browser window. Omitted settings keep the runtime defaults. */
5
+ declare function createPage(options?: CreatePageOptions): Page;
6
+ //#endregion
7
+ export { CreatePageOptions, createPage };