pomwright 0.0.8 → 0.0.9
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.
- package/CHANGELOG.md +6 -0
- package/README.md +1 -2
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# POMWright
|
|
2
2
|
|
|
3
|
-
  [](https://www.npmjs.com/package/pomwright)   [](https://www.npmjs.com/package/playwright) [](https://www.ice.no/)
|
|
5
4
|
|
|
6
5
|
POMWright is a TypeScript-based framework that implements the Page Object Model Design Pattern, designed specifically to augment Playwright's testing capabilities.
|
|
7
6
|
|
package/dist/index.d.mts
CHANGED
|
@@ -433,7 +433,6 @@ declare abstract class BasePage<LocatorSchemaPathType extends string> {
|
|
|
433
433
|
* @returns Promise<Locator> - A promise that resolves to the nested locator.
|
|
434
434
|
*/
|
|
435
435
|
getLocator: (locatorSchemaPath: LocatorSchemaPathType) => Promise<Locator>;
|
|
436
|
-
protected abstract pageActionsToPerformAfterNavigation(): (() => Promise<void>)[];
|
|
437
436
|
/**
|
|
438
437
|
* Abstract method to initialize locator schemas.
|
|
439
438
|
*
|
package/dist/index.d.ts
CHANGED
|
@@ -433,7 +433,6 @@ declare abstract class BasePage<LocatorSchemaPathType extends string> {
|
|
|
433
433
|
* @returns Promise<Locator> - A promise that resolves to the nested locator.
|
|
434
434
|
*/
|
|
435
435
|
getLocator: (locatorSchemaPath: LocatorSchemaPathType) => Promise<Locator>;
|
|
436
|
-
protected abstract pageActionsToPerformAfterNavigation(): (() => Promise<void>)[];
|
|
437
436
|
/**
|
|
438
437
|
* Abstract method to initialize locator schemas.
|
|
439
438
|
*
|