pw-element-interactions 0.0.6 → 0.0.7
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 +1 -0
- package/dist/index.js +4 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -7,3 +7,4 @@ export { DateUtilities } from './utils/DateUtilities';
|
|
|
7
7
|
export { Utils } from './utils/ElementUtilities';
|
|
8
8
|
export { ElementInteractions } from './interactions/facade/ElementInteractions';
|
|
9
9
|
export { Steps } from './steps/CommonSteps';
|
|
10
|
+
export { baseFixture } from './fixture/BaseFixture';
|
package/dist/index.js
CHANGED
|
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.Steps = exports.ElementInteractions = exports.Utils = exports.DateUtilities = exports.Extractions = exports.Interactions = exports.Verifications = exports.Navigation = void 0;
|
|
17
|
+
exports.baseFixture = exports.Steps = exports.ElementInteractions = exports.Utils = exports.DateUtilities = exports.Extractions = exports.Interactions = exports.Verifications = exports.Navigation = void 0;
|
|
18
18
|
// Enums
|
|
19
19
|
__exportStar(require("./enum/Options"), exports);
|
|
20
20
|
// Supporting Action Classes
|
|
@@ -37,3 +37,6 @@ Object.defineProperty(exports, "ElementInteractions", { enumerable: true, get: f
|
|
|
37
37
|
// Test Steps Facade
|
|
38
38
|
var CommonSteps_1 = require("./steps/CommonSteps");
|
|
39
39
|
Object.defineProperty(exports, "Steps", { enumerable: true, get: function () { return CommonSteps_1.Steps; } });
|
|
40
|
+
// Test Fixture
|
|
41
|
+
var BaseFixture_1 = require("./fixture/BaseFixture");
|
|
42
|
+
Object.defineProperty(exports, "baseFixture", { enumerable: true, get: function () { return BaseFixture_1.baseFixture; } });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pw-element-interactions",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
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",
|
|
@@ -45,4 +45,4 @@
|
|
|
45
45
|
},
|
|
46
46
|
"author": "Umut Ay Bora",
|
|
47
47
|
"license": "MIT"
|
|
48
|
-
}
|
|
48
|
+
}
|