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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # pomwright
2
2
 
3
+ ## 0.0.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 7e8b7d1: removes an abstract method from POMWright/BasePage which should have been removed previously
8
+
3
9
  ## 0.0.8
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -1,7 +1,6 @@
1
1
  # POMWright
2
2
 
3
- ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/DyHex/POMWright/main.yaml?label=CI%20on%20main) ![NPM Version](https://img.shields.io/npm/v/pomwright?link=https%3A%2F%2Fwww.npmjs.com%2Fpackage%2Fpomwright) ![NPM Downloads](https://img.shields.io/npm/dt/pomwright) ![GitHub License](https://img.shields.io/github/license/DyHex/POMWright) ![NPM dev or peer Dependency Version](https://img.shields.io/npm/dependency-version/pomwright/peer/%40playwright%2Ftest)
4
-
3
+ ![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/DyHex/POMWright/main.yaml?label=CI%20on%20main) [![NPM Version](https://img.shields.io/npm/v/pomwright)](https://www.npmjs.com/package/pomwright) ![NPM Downloads](https://img.shields.io/npm/dt/pomwright) ![GitHub License](https://img.shields.io/github/license/DyHex/POMWright) [![NPM dev or peer Dependency Version](https://img.shields.io/npm/dependency-version/pomwright/peer/%40playwright%2Ftest)](https://www.npmjs.com/package/playwright) [![Static Badge](https://img.shields.io/badge/created%40-ICE-ffcd00)](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
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pomwright",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "POMWright is a complementary test framework for Playwright written in TypeScript.",
5
5
  "repository": {
6
6
  "type": "git",