pw-element-interactions 0.0.2 → 0.0.4
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/dist/index.d.ts +5 -1
- package/dist/index.js +16 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,2 +1,6 @@
|
|
|
1
1
|
export { ElementInteractions } from './ElementInteractions';
|
|
2
|
-
export {
|
|
2
|
+
export { Interactions, DropdownSelectType, DropdownSelectOptions } from './interactions/Interaction';
|
|
3
|
+
export { Navigation } from './interactions/Navigation';
|
|
4
|
+
export { Verifications } from './interactions/Verification';
|
|
5
|
+
export { DateUtilities } from './utils/DateUtilities';
|
|
6
|
+
export { Steps } from './steps/CommonSteps';
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Steps = exports.ElementInteractions = void 0;
|
|
3
|
+
exports.Steps = exports.DateUtilities = exports.Verifications = exports.Navigation = exports.DropdownSelectType = exports.Interactions = exports.ElementInteractions = void 0;
|
|
4
|
+
// Main Entry Point (The Facade)
|
|
4
5
|
var ElementInteractions_1 = require("./ElementInteractions");
|
|
5
6
|
Object.defineProperty(exports, "ElementInteractions", { enumerable: true, get: function () { return ElementInteractions_1.ElementInteractions; } });
|
|
6
|
-
|
|
7
|
+
// Interaction logic and associated Types/Enums
|
|
8
|
+
var Interaction_1 = require("./interactions/Interaction");
|
|
9
|
+
Object.defineProperty(exports, "Interactions", { enumerable: true, get: function () { return Interaction_1.Interactions; } });
|
|
10
|
+
Object.defineProperty(exports, "DropdownSelectType", { enumerable: true, get: function () { return Interaction_1.DropdownSelectType; } });
|
|
11
|
+
// Supporting Action Classes
|
|
12
|
+
var Navigation_1 = require("./interactions/Navigation");
|
|
13
|
+
Object.defineProperty(exports, "Navigation", { enumerable: true, get: function () { return Navigation_1.Navigation; } });
|
|
14
|
+
var Verification_1 = require("./interactions/Verification");
|
|
15
|
+
Object.defineProperty(exports, "Verifications", { enumerable: true, get: function () { return Verification_1.Verifications; } });
|
|
16
|
+
// Utilities
|
|
17
|
+
var DateUtilities_1 = require("./utils/DateUtilities"); // Adjust path if necessary
|
|
18
|
+
Object.defineProperty(exports, "DateUtilities", { enumerable: true, get: function () { return DateUtilities_1.DateUtilities; } });
|
|
19
|
+
// Test Steps / Page Objects
|
|
20
|
+
var CommonSteps_1 = require("./steps/CommonSteps");
|
|
7
21
|
Object.defineProperty(exports, "Steps", { enumerable: true, get: function () { return CommonSteps_1.Steps; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pw-element-interactions",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "A robust, readable interaction and assertion Facade for Playwright. Abstract away boilerplate into semantic, English-like methods, making your test automation framework cleaner, easier to maintain, and accessible to non-developers.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|