pw-element-interactions 0.0.4 → 0.0.6

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.
@@ -1,17 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ElementInteractions = void 0;
4
- const Interaction_1 = require("./interactions/Interaction");
5
- const Navigation_1 = require("./interactions/Navigation");
6
- const Verification_1 = require("./interactions/Verification");
7
- class ElementInteractions {
8
- navigate;
9
- interact;
10
- verify;
11
- constructor(page) {
12
- this.navigate = new Navigation_1.Navigation(page);
13
- this.interact = new Interaction_1.Interactions(page);
14
- this.verify = new Verification_1.Verifications(page);
15
- }
16
- }
17
- exports.ElementInteractions = ElementInteractions;