@empiricalrun/playwright-utils 0.22.2 → 0.22.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/CHANGELOG.md +16 -0
- package/dist/overlay-tests/click.spec.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @empiricalrun/playwright-utils
|
|
2
2
|
|
|
3
|
+
## 0.22.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f2e9d28: fix: button in class name does not mean clickable
|
|
8
|
+
- Updated dependencies [f2e9d28]
|
|
9
|
+
- @empiricalrun/test-gen@0.46.7
|
|
10
|
+
|
|
11
|
+
## 0.22.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [8065639]
|
|
16
|
+
- Updated dependencies [f5f12f5]
|
|
17
|
+
- @empiricalrun/test-gen@0.46.6
|
|
18
|
+
|
|
3
19
|
## 0.22.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -41,7 +41,7 @@ test("should dismiss survicate for click", async ({ page, server }) => {
|
|
|
41
41
|
await (0, test_1.expect)(targetButton).toBeVisible();
|
|
42
42
|
// Get initial z-index
|
|
43
43
|
const initialZIndex = await targetButton.evaluate((el) => window.getComputedStyle(el).getPropertyValue("z-index"));
|
|
44
|
-
// Do the click, which should pass
|
|
44
|
+
// Do the click, which should pass after survey overlay is dismissed
|
|
45
45
|
await targetButton.click();
|
|
46
46
|
// Assert z-index hasn't changed
|
|
47
47
|
const finalZIndex = await targetButton.evaluate((el) => window.getComputedStyle(el).getPropertyValue("z-index"));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@empiricalrun/playwright-utils",
|
|
3
|
-
"version": "0.22.
|
|
3
|
+
"version": "0.22.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"rimraf": "^6.0.1",
|
|
45
45
|
"@empiricalrun/llm": "^0.9.35",
|
|
46
46
|
"@empiricalrun/r2-uploader": "^0.3.8",
|
|
47
|
-
"@empiricalrun/test-gen": "^0.46.
|
|
47
|
+
"@empiricalrun/test-gen": "^0.46.7"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"dev": "tsc --build --watch",
|