@checkly/playwright-core 1.54.2-beta.1 → 1.54.2-beta.3
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/lib/checkly/index.js +22 -0
- package/lib/checkly/secretsFilter.js +52 -0
- package/lib/generated/consoleApiSource.js +1 -1
- package/lib/generated/injectedScriptSource.js +1 -1
- package/lib/generated/webSocketMockSource.js +54 -12
- package/lib/server/dispatchers/localUtilsDispatcher.js +1 -1
- package/lib/server/fetch.js +5 -0
- package/lib/server/har/harRecorder.js +3 -1
- package/lib/server/pageBinding.js +88 -0
- package/lib/server/trace/recorder/tracing.js +9 -19
- package/lib/server/utils/fileUtils.js +56 -0
- package/lib/server/webkit/wkExecutionContext.js +1 -2
- package/lib/utils/isomorphic/builtins.js +90 -0
- package/lib/utils/isomorphic/cssParser.js +2 -1
- package/lib/utils/isomorphic/manualPromise.js +2 -1
- package/lib/utils/isomorphic/mimeType.js +2 -1
- package/lib/utils/isomorphic/multimap.js +2 -1
- package/lib/utils/isomorphic/selectorParser.js +4 -3
- package/lib/utils/isomorphic/stringUtils.js +2 -1
- package/lib/utils/isomorphic/traceUtils.js +3 -2
- package/lib/utils/isomorphic/urlMatch.js +3 -2
- package/package.json +2 -1
- package/types/types.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkly/playwright-core",
|
|
3
|
-
"version": "1.54.2-beta.
|
|
3
|
+
"version": "1.54.2-beta.3",
|
|
4
4
|
"description": "A high-level API to automate web browsers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
"./lib/server/registry/index": "./lib/server/registry/index.js",
|
|
34
34
|
"./lib/utils": "./lib/utils.js",
|
|
35
35
|
"./lib/utilsBundle": "./lib/utilsBundle.js",
|
|
36
|
+
"./lib/checkly": "./lib/checkly/index.js",
|
|
36
37
|
"./lib/zipBundle": "./lib/zipBundle.js",
|
|
37
38
|
"./types/protocol": "./types/protocol.d.ts",
|
|
38
39
|
"./types/structs": "./types/structs.d.ts"
|
package/types/types.d.ts
CHANGED
|
@@ -12510,6 +12510,12 @@ export interface Locator {
|
|
|
12510
12510
|
* @param options
|
|
12511
12511
|
*/
|
|
12512
12512
|
ariaSnapshot(options?: {
|
|
12513
|
+
/**
|
|
12514
|
+
* Generate symbolic reference for each element. One can use `aria-ref=<ref>` locator immediately after capturing the
|
|
12515
|
+
* snapshot to perform actions on the element.
|
|
12516
|
+
*/
|
|
12517
|
+
ref?: boolean;
|
|
12518
|
+
|
|
12513
12519
|
/**
|
|
12514
12520
|
* Maximum time in milliseconds. Defaults to `0` - no timeout. The default value can be changed via `actionTimeout`
|
|
12515
12521
|
* option in the config, or by using the
|