patchright-core 1.51.3 → 1.52.1
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/browsers.json +15 -13
- package/lib/androidServerImpl.js +42 -48
- package/lib/browserServerImpl.js +54 -67
- package/lib/cli/driver.js +71 -69
- package/lib/cli/program.js +312 -328
- package/lib/cli/programWithTestStub.js +51 -45
- package/lib/client/accessibility.js +31 -32
- package/lib/client/android.js +141 -228
- package/lib/client/api.js +135 -283
- package/lib/client/artifact.js +39 -36
- package/lib/client/browser.js +57 -61
- package/lib/client/browserContext.js +297 -326
- package/lib/client/browserType.js +92 -106
- package/lib/client/cdpSession.js +29 -31
- package/lib/client/channelOwner.js +82 -95
- package/lib/client/clientHelper.js +46 -38
- package/lib/client/clientInstrumentation.js +40 -37
- package/lib/client/clientStackTrace.js +41 -37
- package/lib/client/clock.js +36 -36
- package/lib/client/connection.js +190 -212
- package/lib/client/consoleMessage.js +31 -28
- package/lib/client/coverage.js +25 -22
- package/lib/client/dialog.js +30 -31
- package/lib/client/download.js +25 -25
- package/lib/client/electron.js +73 -75
- package/lib/client/elementHandle.js +111 -147
- package/lib/client/errors.js +53 -53
- package/lib/client/eventEmitter.js +124 -121
- package/lib/client/events.js +72 -68
- package/lib/client/fetch.js +135 -158
- package/lib/client/fileChooser.js +25 -24
- package/lib/client/fileUtils.js +31 -28
- package/lib/client/frame.js +187 -306
- package/lib/client/harRouter.js +42 -52
- package/lib/client/input.js +40 -69
- package/lib/client/jsHandle.js +56 -71
- package/lib/client/jsonPipe.js +27 -23
- package/lib/client/localUtils.js +29 -28
- package/lib/client/locator.js +161 -245
- package/lib/client/network.js +277 -295
- package/lib/client/page.js +270 -318
- package/lib/client/platform.js +46 -43
- package/lib/client/playwright.js +51 -66
- package/lib/client/selectors.js +48 -46
- package/lib/client/stream.js +29 -25
- package/lib/client/timeoutSettings.js +49 -39
- package/lib/client/tracing.js +48 -84
- package/lib/client/types.js +26 -22
- package/lib/client/video.js +35 -27
- package/lib/client/waiter.js +69 -88
- package/lib/client/webError.js +25 -23
- package/lib/client/webSocket.js +61 -56
- package/lib/client/worker.js +48 -58
- package/lib/client/writableStream.js +27 -23
- package/lib/generated/clockSource.js +26 -5
- package/lib/generated/consoleApiSource.js +26 -5
- package/lib/generated/injectedScriptSource.js +26 -5
- package/lib/generated/pollingRecorderSource.js +26 -5
- package/lib/generated/utilityScriptSource.js +26 -5
- package/lib/generated/webSocketMockSource.js +371 -4
- package/lib/inProcessFactory.js +53 -53
- package/lib/inprocess.js +2 -19
- package/lib/outofprocess.js +53 -46
- package/lib/protocol/debug.js +209 -25
- package/lib/protocol/serializers.js +153 -134
- package/lib/protocol/validator.js +2714 -2714
- package/lib/protocol/validatorPrimitives.js +114 -73
- package/lib/remote/playwrightConnection.js +140 -157
- package/lib/remote/playwrightServer.js +99 -84
- package/lib/server/accessibility.js +44 -37
- package/lib/server/android/android.js +216 -209
- package/lib/server/android/backendAdb.js +89 -82
- package/lib/server/artifact.js +78 -55
- package/lib/server/bidi/bidiBrowser.js +221 -155
- package/lib/server/bidi/bidiChromium.js +106 -79
- package/lib/server/bidi/bidiConnection.js +66 -83
- package/lib/server/bidi/bidiExecutionContext.js +128 -113
- package/lib/server/bidi/bidiFirefox.js +76 -69
- package/lib/server/bidi/bidiInput.js +86 -97
- package/lib/server/bidi/bidiNetworkManager.js +137 -154
- package/lib/server/bidi/bidiOverCdp.js +57 -58
- package/lib/server/bidi/bidiPage.js +247 -219
- package/lib/server/bidi/bidiPdf.js +52 -86
- package/lib/server/bidi/third_party/bidiCommands.d.js +22 -0
- package/lib/server/bidi/third_party/bidiDeserializer.js +55 -50
- package/lib/server/bidi/third_party/bidiKeyboard.js +236 -220
- package/lib/server/bidi/third_party/bidiProtocol.js +144 -131
- package/lib/server/bidi/third_party/bidiSerializer.js +67 -63
- package/lib/server/bidi/third_party/firefoxPrefs.js +141 -119
- package/lib/server/browser.js +76 -84
- package/lib/server/browserContext.js +321 -346
- package/lib/server/browserType.js +169 -182
- package/lib/server/callLog.js +47 -44
- package/lib/server/chromium/chromium.js +212 -190
- package/lib/server/chromium/chromiumSwitches.js +86 -64
- package/lib/server/chromium/crAccessibility.js +157 -131
- package/lib/server/chromium/crBrowser.js +253 -273
- package/lib/server/chromium/crConnection.js +91 -116
- package/lib/server/chromium/crCoverage.js +113 -127
- package/lib/server/chromium/crDevTools.js +59 -51
- package/lib/server/chromium/crDragDrop.js +62 -79
- package/lib/server/chromium/crExecutionContext.js +88 -83
- package/lib/server/chromium/crInput.js +97 -95
- package/lib/server/chromium/crNetworkManager.js +284 -404
- package/lib/server/chromium/crPage.js +522 -608
- package/lib/server/chromium/crPdf.js +54 -86
- package/lib/server/chromium/crProtocolHelper.js +92 -80
- package/lib/server/chromium/crServiceWorker.js +82 -67
- package/lib/server/chromium/defaultFontFamilies.js +152 -135
- package/lib/server/chromium/protocol.d.js +16 -0
- package/lib/server/chromium/videoRecorder.js +65 -99
- package/lib/server/clock.js +62 -50
- package/lib/server/codegen/csharp.js +185 -160
- package/lib/server/codegen/java.js +155 -128
- package/lib/server/codegen/javascript.js +163 -148
- package/lib/server/codegen/jsonl.js +32 -28
- package/lib/server/codegen/language.js +75 -52
- package/lib/server/codegen/languages.js +65 -27
- package/lib/server/codegen/python.js +140 -125
- package/lib/server/codegen/types.js +15 -4
- package/lib/server/console.js +28 -32
- package/lib/server/cookieStore.js +105 -86
- package/lib/server/debugController.js +97 -124
- package/lib/server/debugger.js +82 -78
- package/lib/server/deviceDescriptors.js +37 -24
- package/lib/server/deviceDescriptorsSource.json +50 -50
- package/lib/server/dialog.js +36 -35
- package/lib/server/dispatchers/androidDispatcher.js +196 -107
- package/lib/server/dispatchers/artifactDispatcher.js +62 -62
- package/lib/server/dispatchers/browserContextDispatcher.js +176 -205
- package/lib/server/dispatchers/browserDispatcher.js +78 -97
- package/lib/server/dispatchers/browserTypeDispatcher.js +35 -35
- package/lib/server/dispatchers/cdpSessionDispatcher.js +32 -36
- package/lib/server/dispatchers/debugControllerDispatcher.js +48 -66
- package/lib/server/dispatchers/dialogDispatcher.js +30 -27
- package/lib/server/dispatchers/dispatcher.js +169 -220
- package/lib/server/dispatchers/electronDispatcher.js +54 -57
- package/lib/server/dispatchers/elementHandlerDispatcher.js +77 -119
- package/lib/server/dispatchers/frameDispatcher.js +99 -163
- package/lib/server/dispatchers/jsHandleDispatcher.js +49 -66
- package/lib/server/dispatchers/jsonPipeDispatcher.js +35 -36
- package/lib/server/dispatchers/localUtilsDispatcher.js +95 -80
- package/lib/server/dispatchers/networkDispatchers.js +90 -107
- package/lib/server/dispatchers/pageDispatcher.js +128 -169
- package/lib/server/dispatchers/playwrightDispatcher.js +69 -76
- package/lib/server/dispatchers/selectorsDispatcher.js +28 -24
- package/lib/server/dispatchers/streamDispatcher.js +42 -45
- package/lib/server/dispatchers/tracingDispatcher.js +36 -41
- package/lib/server/dispatchers/webSocketRouteDispatcher.js +96 -131
- package/lib/server/dispatchers/writableStreamDispatcher.js +54 -38
- package/lib/server/dom.js +413 -443
- package/lib/server/download.js +45 -35
- package/lib/server/electron/electron.js +156 -176
- package/lib/server/electron/loader.js +8 -36
- package/lib/server/errors.js +47 -46
- package/lib/server/fetch.js +289 -323
- package/lib/server/fileChooser.js +25 -24
- package/lib/server/fileUploadUtils.js +65 -59
- package/lib/server/firefox/ffAccessibility.js +153 -131
- package/lib/server/firefox/ffBrowser.js +213 -277
- package/lib/server/firefox/ffConnection.js +63 -84
- package/lib/server/firefox/ffExecutionContext.js +91 -73
- package/lib/server/firefox/ffInput.js +67 -69
- package/lib/server/firefox/ffNetworkManager.js +131 -110
- package/lib/server/firefox/ffPage.js +236 -273
- package/lib/server/firefox/firefox.js +76 -67
- package/lib/server/firefox/protocol.d.js +16 -0
- package/lib/server/formData.js +107 -35
- package/lib/server/frameSelectors.js +221 -112
- package/lib/server/frames.js +731 -894
- package/lib/server/har/harRecorder.js +85 -77
- package/lib/server/har/harTracer.js +287 -222
- package/lib/server/harBackend.js +80 -80
- package/lib/server/helper.js +56 -59
- package/lib/server/index.js +59 -99
- package/lib/server/input.js +134 -163
- package/lib/server/instrumentation.js +49 -44
- package/lib/server/javascript.js +143 -134
- package/lib/server/launchApp.js +92 -73
- package/lib/server/localUtils.js +130 -122
- package/lib/server/macEditingCommands.js +141 -137
- package/lib/server/network.js +262 -296
- package/lib/server/page.js +326 -423
- package/lib/server/pageBinding.js +88 -0
- package/lib/server/pipeTransport.js +49 -45
- package/lib/server/playwright.js +60 -67
- package/lib/server/progress.js +56 -51
- package/lib/server/protocolError.js +34 -31
- package/lib/server/recorder/chat.js +70 -86
- package/lib/server/recorder/contextRecorder.js +134 -138
- package/lib/server/recorder/recorderApp.js +127 -136
- package/lib/server/recorder/recorderCollection.js +56 -44
- package/lib/server/recorder/recorderFrontend.js +15 -4
- package/lib/server/recorder/recorderRunner.js +79 -103
- package/lib/server/recorder/recorderUtils.js +56 -45
- package/lib/server/recorder/throttledFile.js +42 -30
- package/lib/server/recorder.js +177 -186
- package/lib/server/registry/browserFetcher.js +106 -101
- package/lib/server/registry/dependencies.js +245 -196
- package/lib/server/registry/index.js +904 -792
- package/lib/server/registry/nativeDeps.js +1073 -464
- package/lib/server/registry/oopDownloadBrowserMain.js +57 -75
- package/lib/server/screenshotter.js +166 -182
- package/lib/server/selectors.js +85 -46
- package/lib/server/socksClientCertificatesInterceptor.js +166 -185
- package/lib/server/socksInterceptor.js +62 -70
- package/lib/server/storageScript.js +94 -100
- package/lib/server/timeoutSettings.js +58 -43
- package/lib/server/trace/recorder/snapshotter.js +70 -89
- package/lib/server/trace/recorder/snapshotterInjected.js +238 -217
- package/lib/server/trace/recorder/tracing.js +321 -333
- package/lib/server/trace/test/inMemorySnapshotter.js +46 -52
- package/lib/server/trace/viewer/traceViewer.js +168 -146
- package/lib/server/transport.js +124 -133
- package/lib/server/types.js +26 -22
- package/lib/server/usKeyboardLayout.js +135 -545
- package/lib/server/utils/ascii.js +39 -26
- package/lib/server/utils/comparators.js +105 -103
- package/lib/server/utils/crypto.js +157 -112
- package/lib/server/utils/debug.js +37 -28
- package/lib/server/utils/debugLogger.js +69 -48
- package/lib/server/utils/env.js +52 -37
- package/lib/server/utils/eventsHelper.js +29 -28
- package/lib/server/utils/expectUtils.js +31 -26
- package/lib/server/utils/fileUtils.js +123 -136
- package/lib/server/utils/happyEyeballs.js +138 -123
- package/lib/server/utils/hostPlatform.js +84 -120
- package/lib/server/utils/httpServer.js +106 -121
- package/lib/server/utils/image_tools/colorUtils.js +42 -51
- package/lib/server/utils/image_tools/compare.js +44 -43
- package/lib/server/utils/image_tools/imageChannel.js +38 -30
- package/lib/server/utils/image_tools/stats.js +40 -40
- package/lib/server/utils/linuxUtils.js +50 -37
- package/lib/server/utils/network.js +143 -86
- package/lib/server/utils/nodePlatform.js +87 -79
- package/lib/server/utils/pipeTransport.js +44 -42
- package/lib/server/utils/processLauncher.js +111 -121
- package/lib/server/utils/profiler.js +52 -39
- package/lib/server/utils/socksProxy.js +280 -339
- package/lib/server/utils/spawnAsync.js +37 -41
- package/lib/server/utils/task.js +31 -38
- package/lib/server/utils/userAgent.js +73 -66
- package/lib/server/utils/wsServer.js +73 -69
- package/lib/server/utils/zipFile.js +36 -37
- package/lib/server/utils/zones.js +37 -34
- package/lib/server/webkit/protocol.d.js +16 -0
- package/lib/server/webkit/webkit.js +76 -63
- package/lib/server/webkit/wkAccessibility.js +161 -118
- package/lib/server/webkit/wkBrowser.js +159 -176
- package/lib/server/webkit/wkConnection.js +59 -83
- package/lib/server/webkit/wkExecutionContext.js +84 -70
- package/lib/server/webkit/wkInput.js +82 -80
- package/lib/server/webkit/wkInterceptableRequest.js +102 -95
- package/lib/server/webkit/wkPage.js +525 -619
- package/lib/server/webkit/wkProvisionalPage.js +45 -56
- package/lib/server/webkit/wkWorkers.js +77 -77
- package/lib/utils/isomorphic/ariaSnapshot.js +144 -152
- package/lib/utils/isomorphic/assert.js +28 -22
- package/lib/utils/isomorphic/builtins.js +86 -0
- package/lib/utils/isomorphic/colors.js +66 -59
- package/lib/utils/isomorphic/cssParser.js +121 -125
- package/lib/utils/isomorphic/cssTokenizer.js +436 -364
- package/lib/utils/isomorphic/headers.js +38 -37
- package/lib/utils/isomorphic/locatorGenerators.js +340 -357
- package/lib/utils/isomorphic/locatorParser.js +96 -105
- package/lib/utils/isomorphic/locatorUtils.js +63 -44
- package/lib/utils/isomorphic/manualPromise.js +47 -39
- package/lib/utils/isomorphic/mimeType.js +448 -25
- package/lib/utils/isomorphic/multimap.js +35 -27
- package/lib/utils/isomorphic/rtti.js +35 -33
- package/lib/utils/isomorphic/selectorParser.js +183 -193
- package/lib/utils/isomorphic/semaphore.js +27 -24
- package/lib/utils/isomorphic/stackTrace.js +87 -98
- package/lib/utils/isomorphic/stringUtils.js +113 -106
- package/lib/utils/isomorphic/time.js +41 -22
- package/lib/utils/isomorphic/timeoutRunner.js +55 -54
- package/lib/utils/isomorphic/traceUtils.js +38 -41
- package/lib/utils/isomorphic/types.js +15 -4
- package/lib/utils/isomorphic/urlMatch.js +112 -67
- package/lib/utils/isomorphic/utilityScriptSerializers.js +248 -0
- package/lib/utils.js +97 -443
- package/lib/utilsBundle.js +101 -52
- package/lib/vite/htmlReport/index.html +21 -15
- package/lib/vite/recorder/assets/{codeMirrorModule-B9YMkrwa.js → codeMirrorModule-CXVeovup.js} +1 -1
- package/lib/vite/recorder/assets/index-BsWQsSGl.js +184 -0
- package/lib/vite/recorder/index.html +1 -1
- package/lib/vite/traceViewer/assets/{codeMirrorModule-1DiydmYA.js → codeMirrorModule-_GLjJL-7.js} +1 -1
- package/lib/vite/traceViewer/assets/defaultSettingsView-DtCQiGHe.js +265 -0
- package/lib/vite/traceViewer/{defaultSettingsView.5fN5lw10.css → defaultSettingsView.QdHITyLI.css} +1 -1
- package/lib/vite/traceViewer/index.cFZzK9RN.js +2 -0
- package/lib/vite/traceViewer/index.html +3 -3
- package/lib/vite/traceViewer/sw.bundle.js +3 -3
- package/lib/vite/traceViewer/uiMode.XVPIqBeS.js +5 -0
- package/lib/vite/traceViewer/uiMode.html +3 -3
- package/lib/zipBundle.js +32 -23
- package/package.json +1 -1
- package/types/protocol.d.ts +436 -17
- package/types/types.d.ts +35 -16
- package/lib/server/isomorphic/utilityScriptSerializers.js +0 -229
- package/lib/vite/recorder/assets/index-ELPgmkwA.js +0 -184
- package/lib/vite/traceViewer/assets/defaultSettingsView-l0TyP_G8.js +0 -259
- package/lib/vite/traceViewer/index.BqUZLSro.js +0 -2
- package/lib/vite/traceViewer/uiMode.C1d2m5sF.js +0 -5
package/lib/client/frame.js
CHANGED
|
@@ -1,123 +1,129 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty
|
|
4
|
-
|
|
2
|
+
var __create = Object.create;
|
|
3
|
+
var __defProp = Object.defineProperty;
|
|
4
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
+
var __export = (target, all) => {
|
|
9
|
+
for (var name in all)
|
|
10
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
+
};
|
|
12
|
+
var __copyProps = (to, from, except, desc) => {
|
|
13
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
+
for (let key of __getOwnPropNames(from))
|
|
15
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
+
}
|
|
18
|
+
return to;
|
|
19
|
+
};
|
|
20
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
+
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
+
mod
|
|
27
|
+
));
|
|
28
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
+
var frame_exports = {};
|
|
30
|
+
__export(frame_exports, {
|
|
31
|
+
Frame: () => Frame,
|
|
32
|
+
verifyLoadState: () => verifyLoadState
|
|
5
33
|
});
|
|
6
|
-
exports
|
|
7
|
-
|
|
8
|
-
var
|
|
9
|
-
var
|
|
10
|
-
var
|
|
11
|
-
var
|
|
12
|
-
var
|
|
13
|
-
var
|
|
14
|
-
var
|
|
15
|
-
var
|
|
16
|
-
var
|
|
17
|
-
var
|
|
18
|
-
var
|
|
19
|
-
var
|
|
20
|
-
|
|
21
|
-
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
22
|
-
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
23
|
-
/**
|
|
24
|
-
* Copyright 2017 Google Inc. All rights reserved.
|
|
25
|
-
* Modifications copyright (c) Microsoft Corporation.
|
|
26
|
-
*
|
|
27
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
28
|
-
* you may not use this file except in compliance with the License.
|
|
29
|
-
* You may obtain a copy of the License at
|
|
30
|
-
*
|
|
31
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
32
|
-
*
|
|
33
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
34
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
35
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
36
|
-
* See the License for the specific language governing permissions and
|
|
37
|
-
* limitations under the License.
|
|
38
|
-
*/
|
|
39
|
-
|
|
40
|
-
class Frame extends _channelOwner.ChannelOwner {
|
|
41
|
-
static from(frame) {
|
|
42
|
-
return frame._object;
|
|
43
|
-
}
|
|
44
|
-
static fromNullable(frame) {
|
|
45
|
-
return frame ? Frame.from(frame) : null;
|
|
46
|
-
}
|
|
34
|
+
module.exports = __toCommonJS(frame_exports);
|
|
35
|
+
var import_eventEmitter = require("./eventEmitter");
|
|
36
|
+
var import_channelOwner = require("./channelOwner");
|
|
37
|
+
var import_clientHelper = require("./clientHelper");
|
|
38
|
+
var import_elementHandle = require("./elementHandle");
|
|
39
|
+
var import_events = require("./events");
|
|
40
|
+
var import_jsHandle = require("./jsHandle");
|
|
41
|
+
var import_locator = require("./locator");
|
|
42
|
+
var network = __toESM(require("./network"));
|
|
43
|
+
var import_types = require("./types");
|
|
44
|
+
var import_waiter = require("./waiter");
|
|
45
|
+
var import_assert = require("../utils/isomorphic/assert");
|
|
46
|
+
var import_locatorUtils = require("../utils/isomorphic/locatorUtils");
|
|
47
|
+
var import_urlMatch = require("../utils/isomorphic/urlMatch");
|
|
48
|
+
class Frame extends import_channelOwner.ChannelOwner {
|
|
47
49
|
constructor(parent, type, guid, initializer) {
|
|
48
50
|
super(parent, type, guid, initializer);
|
|
49
|
-
this._eventEmitter = void 0;
|
|
50
|
-
this._loadStates = void 0;
|
|
51
51
|
this._parentFrame = null;
|
|
52
|
-
this._url =
|
|
53
|
-
this._name =
|
|
52
|
+
this._url = "";
|
|
53
|
+
this._name = "";
|
|
54
54
|
this._detached = false;
|
|
55
|
-
this._childFrames = new Set();
|
|
56
|
-
this.
|
|
57
|
-
this._eventEmitter = new _eventEmitter.EventEmitter(parent._platform);
|
|
55
|
+
this._childFrames = /* @__PURE__ */ new Set();
|
|
56
|
+
this._eventEmitter = new import_eventEmitter.EventEmitter(parent._platform);
|
|
58
57
|
this._eventEmitter.setMaxListeners(0);
|
|
59
58
|
this._parentFrame = Frame.fromNullable(initializer.parentFrame);
|
|
60
|
-
if (this._parentFrame)
|
|
59
|
+
if (this._parentFrame)
|
|
60
|
+
this._parentFrame._childFrames.add(this);
|
|
61
61
|
this._name = initializer.name;
|
|
62
62
|
this._url = initializer.url;
|
|
63
63
|
this._loadStates = new Set(initializer.loadStates);
|
|
64
|
-
this._channel.on(
|
|
64
|
+
this._channel.on("loadstate", (event) => {
|
|
65
65
|
if (event.add) {
|
|
66
66
|
this._loadStates.add(event.add);
|
|
67
|
-
this._eventEmitter.emit(
|
|
67
|
+
this._eventEmitter.emit("loadstate", event.add);
|
|
68
68
|
}
|
|
69
|
-
if (event.remove)
|
|
70
|
-
|
|
71
|
-
if (!this._parentFrame && event.add ===
|
|
69
|
+
if (event.remove)
|
|
70
|
+
this._loadStates.delete(event.remove);
|
|
71
|
+
if (!this._parentFrame && event.add === "load" && this._page)
|
|
72
|
+
this._page.emit(import_events.Events.Page.Load, this._page);
|
|
73
|
+
if (!this._parentFrame && event.add === "domcontentloaded" && this._page)
|
|
74
|
+
this._page.emit(import_events.Events.Page.DOMContentLoaded, this._page);
|
|
72
75
|
});
|
|
73
|
-
this._channel.on(
|
|
76
|
+
this._channel.on("navigated", (event) => {
|
|
74
77
|
this._url = event.url;
|
|
75
78
|
this._name = event.name;
|
|
76
|
-
this._eventEmitter.emit(
|
|
77
|
-
if (!event.error && this._page)
|
|
79
|
+
this._eventEmitter.emit("navigated", event);
|
|
80
|
+
if (!event.error && this._page)
|
|
81
|
+
this._page.emit(import_events.Events.Page.FrameNavigated, this);
|
|
78
82
|
});
|
|
79
83
|
}
|
|
84
|
+
static from(frame) {
|
|
85
|
+
return frame._object;
|
|
86
|
+
}
|
|
87
|
+
static fromNullable(frame) {
|
|
88
|
+
return frame ? Frame.from(frame) : null;
|
|
89
|
+
}
|
|
80
90
|
page() {
|
|
81
91
|
return this._page;
|
|
82
92
|
}
|
|
83
93
|
async goto(url, options = {}) {
|
|
84
|
-
const waitUntil = verifyLoadState(
|
|
85
|
-
return network.Response.fromNullable((await this._channel.goto({
|
|
86
|
-
url,
|
|
87
|
-
...options,
|
|
88
|
-
waitUntil
|
|
89
|
-
})).response);
|
|
94
|
+
const waitUntil = verifyLoadState("waitUntil", options.waitUntil === void 0 ? "load" : options.waitUntil);
|
|
95
|
+
return network.Response.fromNullable((await this._channel.goto({ url, ...options, waitUntil })).response);
|
|
90
96
|
}
|
|
91
97
|
_setupNavigationWaiter(options) {
|
|
92
|
-
const waiter = new
|
|
93
|
-
if (this._page.isClosed())
|
|
94
|
-
|
|
95
|
-
waiter.rejectOnEvent(this._page,
|
|
96
|
-
waiter.rejectOnEvent(this._page,
|
|
98
|
+
const waiter = new import_waiter.Waiter(this._page, "");
|
|
99
|
+
if (this._page.isClosed())
|
|
100
|
+
waiter.rejectImmediately(this._page._closeErrorWithReason());
|
|
101
|
+
waiter.rejectOnEvent(this._page, import_events.Events.Page.Close, () => this._page._closeErrorWithReason());
|
|
102
|
+
waiter.rejectOnEvent(this._page, import_events.Events.Page.Crash, new Error("Navigation failed because page crashed!"));
|
|
103
|
+
waiter.rejectOnEvent(this._page, import_events.Events.Page.FrameDetached, new Error("Navigating frame was detached!"), (frame) => frame === this);
|
|
97
104
|
const timeout = this._page._timeoutSettings.navigationTimeout(options);
|
|
98
105
|
waiter.rejectOnTimeout(timeout, `Timeout ${timeout}ms exceeded.`);
|
|
99
106
|
return waiter;
|
|
100
107
|
}
|
|
101
108
|
async waitForNavigation(options = {}) {
|
|
102
109
|
return await this._page._wrapApiCall(async () => {
|
|
103
|
-
const waitUntil = verifyLoadState(
|
|
110
|
+
const waitUntil = verifyLoadState("waitUntil", options.waitUntil === void 0 ? "load" : options.waitUntil);
|
|
104
111
|
const waiter = this._setupNavigationWaiter(options);
|
|
105
|
-
const toUrl = typeof options.url ===
|
|
112
|
+
const toUrl = typeof options.url === "string" ? ` to "${options.url}"` : "";
|
|
106
113
|
waiter.log(`waiting for navigation${toUrl} until "${waitUntil}"`);
|
|
107
|
-
const navigatedEvent = await waiter.waitForEvent(this._eventEmitter,
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
if (event.error) return true;
|
|
114
|
+
const navigatedEvent = await waiter.waitForEvent(this._eventEmitter, "navigated", (event) => {
|
|
115
|
+
if (event.error)
|
|
116
|
+
return true;
|
|
111
117
|
waiter.log(` navigated to "${event.url}"`);
|
|
112
|
-
return (0,
|
|
118
|
+
return (0, import_urlMatch.urlMatches)(this._page?.context()._options.baseURL, event.url, options.url);
|
|
113
119
|
});
|
|
114
120
|
if (navigatedEvent.error) {
|
|
115
121
|
const e = new Error(navigatedEvent.error);
|
|
116
|
-
e.stack =
|
|
122
|
+
e.stack = "";
|
|
117
123
|
await waiter.waitForPromise(Promise.reject(e));
|
|
118
124
|
}
|
|
119
125
|
if (!this._loadStates.has(waitUntil)) {
|
|
120
|
-
await waiter.waitForEvent(this._eventEmitter,
|
|
126
|
+
await waiter.waitForEvent(this._eventEmitter, "loadstate", (s) => {
|
|
121
127
|
waiter.log(` "${s}" event fired`);
|
|
122
128
|
return s === waitUntil;
|
|
123
129
|
});
|
|
@@ -128,14 +134,14 @@ class Frame extends _channelOwner.ChannelOwner {
|
|
|
128
134
|
return response;
|
|
129
135
|
});
|
|
130
136
|
}
|
|
131
|
-
async waitForLoadState(state =
|
|
132
|
-
state = verifyLoadState(
|
|
137
|
+
async waitForLoadState(state = "load", options = {}) {
|
|
138
|
+
state = verifyLoadState("state", state);
|
|
133
139
|
return await this._page._wrapApiCall(async () => {
|
|
134
140
|
const waiter = this._setupNavigationWaiter(options);
|
|
135
141
|
if (this._loadStates.has(state)) {
|
|
136
142
|
waiter.log(` not waiting, "${state}" event already fired`);
|
|
137
143
|
} else {
|
|
138
|
-
await waiter.waitForEvent(this._eventEmitter,
|
|
144
|
+
await waiter.waitForEvent(this._eventEmitter, "loadstate", (s) => {
|
|
139
145
|
waiter.log(` "${s}" event fired`);
|
|
140
146
|
return s === state;
|
|
141
147
|
});
|
|
@@ -144,113 +150,69 @@ class Frame extends _channelOwner.ChannelOwner {
|
|
|
144
150
|
});
|
|
145
151
|
}
|
|
146
152
|
async waitForURL(url, options = {}) {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
await this.waitForNavigation({
|
|
150
|
-
url,
|
|
151
|
-
...options
|
|
152
|
-
});
|
|
153
|
+
if ((0, import_urlMatch.urlMatches)(this._page?.context()._options.baseURL, this.url(), url))
|
|
154
|
+
return await this.waitForLoadState(options.waitUntil, options);
|
|
155
|
+
await this.waitForNavigation({ url, ...options });
|
|
153
156
|
}
|
|
154
157
|
async frameElement() {
|
|
155
|
-
return
|
|
158
|
+
return import_elementHandle.ElementHandle.from((await this._channel.frameElement()).element);
|
|
156
159
|
}
|
|
157
160
|
async evaluateHandle(pageFunction, arg, isolatedContext = true) {
|
|
158
|
-
(0,
|
|
159
|
-
const result = await this._channel.evaluateExpressionHandle({
|
|
160
|
-
|
|
161
|
-
isFunction: typeof pageFunction === 'function',
|
|
162
|
-
arg: (0, _jsHandle.serializeArgument)(arg),
|
|
163
|
-
isolatedContext: isolatedContext
|
|
164
|
-
});
|
|
165
|
-
return _jsHandle.JSHandle.from(result.handle);
|
|
161
|
+
(0, import_jsHandle.assertMaxArguments)(arguments.length, 3);
|
|
162
|
+
const result = await this._channel.evaluateExpressionHandle({ expression: String(pageFunction), isFunction: typeof pageFunction === "function", arg: (0, import_jsHandle.serializeArgument)(arg), isolatedContext });
|
|
163
|
+
return import_jsHandle.JSHandle.from(result.handle);
|
|
166
164
|
}
|
|
167
165
|
async evaluate(pageFunction, arg, isolatedContext = true) {
|
|
168
|
-
(0,
|
|
169
|
-
const result = await this._channel.evaluateExpression({
|
|
170
|
-
|
|
171
|
-
isFunction: typeof pageFunction === 'function',
|
|
172
|
-
arg: (0, _jsHandle.serializeArgument)(arg),
|
|
173
|
-
isolatedContext: isolatedContext
|
|
174
|
-
});
|
|
175
|
-
return (0, _jsHandle.parseResult)(result.value);
|
|
166
|
+
(0, import_jsHandle.assertMaxArguments)(arguments.length, 3);
|
|
167
|
+
const result = await this._channel.evaluateExpression({ expression: String(pageFunction), isFunction: typeof pageFunction === "function", arg: (0, import_jsHandle.serializeArgument)(arg), isolatedContext });
|
|
168
|
+
return (0, import_jsHandle.parseResult)(result.value);
|
|
176
169
|
}
|
|
177
170
|
async _evaluateExposeUtilityScript(pageFunction, arg) {
|
|
178
|
-
(0,
|
|
179
|
-
const result = await this._channel.evaluateExpression({
|
|
180
|
-
|
|
181
|
-
isFunction: typeof pageFunction === 'function',
|
|
182
|
-
arg: (0, _jsHandle.serializeArgument)(arg)
|
|
183
|
-
});
|
|
184
|
-
return (0, _jsHandle.parseResult)(result.value);
|
|
171
|
+
(0, import_jsHandle.assertMaxArguments)(arguments.length, 2);
|
|
172
|
+
const result = await this._channel.evaluateExpression({ expression: String(pageFunction), isFunction: typeof pageFunction === "function", arg: (0, import_jsHandle.serializeArgument)(arg) });
|
|
173
|
+
return (0, import_jsHandle.parseResult)(result.value);
|
|
185
174
|
}
|
|
186
175
|
async $(selector, options) {
|
|
187
|
-
const result = await this._channel.querySelector({
|
|
188
|
-
|
|
189
|
-
...options
|
|
190
|
-
});
|
|
191
|
-
return _elementHandle.ElementHandle.fromNullable(result.element);
|
|
176
|
+
const result = await this._channel.querySelector({ selector, ...options });
|
|
177
|
+
return import_elementHandle.ElementHandle.fromNullable(result.element);
|
|
192
178
|
}
|
|
193
179
|
async waitForSelector(selector, options = {}) {
|
|
194
|
-
if (options.visibility)
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
return _elementHandle.ElementHandle.fromNullable(result.element);
|
|
180
|
+
if (options.visibility)
|
|
181
|
+
throw new Error("options.visibility is not supported, did you mean options.state?");
|
|
182
|
+
if (options.waitFor && options.waitFor !== "visible")
|
|
183
|
+
throw new Error("options.waitFor is not supported, did you mean options.state?");
|
|
184
|
+
const result = await this._channel.waitForSelector({ selector, ...options });
|
|
185
|
+
return import_elementHandle.ElementHandle.fromNullable(result.element);
|
|
201
186
|
}
|
|
202
187
|
async dispatchEvent(selector, type, eventInit, options = {}) {
|
|
203
|
-
await this._channel.dispatchEvent({
|
|
204
|
-
selector,
|
|
205
|
-
type,
|
|
206
|
-
eventInit: (0, _jsHandle.serializeArgument)(eventInit),
|
|
207
|
-
...options
|
|
208
|
-
});
|
|
188
|
+
await this._channel.dispatchEvent({ selector, type, eventInit: (0, import_jsHandle.serializeArgument)(eventInit), ...options });
|
|
209
189
|
}
|
|
210
190
|
async $eval(selector, pageFunction, arg) {
|
|
211
|
-
(0,
|
|
212
|
-
const result = await this._channel.evalOnSelector({
|
|
213
|
-
|
|
214
|
-
expression: String(pageFunction),
|
|
215
|
-
isFunction: typeof pageFunction === 'function',
|
|
216
|
-
arg: (0, _jsHandle.serializeArgument)(arg)
|
|
217
|
-
});
|
|
218
|
-
return (0, _jsHandle.parseResult)(result.value);
|
|
191
|
+
(0, import_jsHandle.assertMaxArguments)(arguments.length, 3);
|
|
192
|
+
const result = await this._channel.evalOnSelector({ selector, expression: String(pageFunction), isFunction: typeof pageFunction === "function", arg: (0, import_jsHandle.serializeArgument)(arg) });
|
|
193
|
+
return (0, import_jsHandle.parseResult)(result.value);
|
|
219
194
|
}
|
|
220
195
|
async $$eval(selector, pageFunction, arg) {
|
|
221
|
-
(0,
|
|
222
|
-
const result = await this._channel.evalOnSelectorAll({
|
|
223
|
-
|
|
224
|
-
expression: String(pageFunction),
|
|
225
|
-
isFunction: typeof pageFunction === 'function',
|
|
226
|
-
arg: (0, _jsHandle.serializeArgument)(arg)
|
|
227
|
-
});
|
|
228
|
-
return (0, _jsHandle.parseResult)(result.value);
|
|
196
|
+
(0, import_jsHandle.assertMaxArguments)(arguments.length, 3);
|
|
197
|
+
const result = await this._channel.evalOnSelectorAll({ selector, expression: String(pageFunction), isFunction: typeof pageFunction === "function", arg: (0, import_jsHandle.serializeArgument)(arg) });
|
|
198
|
+
return (0, import_jsHandle.parseResult)(result.value);
|
|
229
199
|
}
|
|
230
200
|
async $$(selector) {
|
|
231
|
-
const result = await this._channel.querySelectorAll({
|
|
232
|
-
|
|
233
|
-
});
|
|
234
|
-
return result.elements.map(e => _elementHandle.ElementHandle.from(e));
|
|
201
|
+
const result = await this._channel.querySelectorAll({ selector });
|
|
202
|
+
return result.elements.map((e) => import_elementHandle.ElementHandle.from(e));
|
|
235
203
|
}
|
|
236
204
|
async _queryCount(selector) {
|
|
237
|
-
return (await this._channel.queryCount({
|
|
238
|
-
selector
|
|
239
|
-
})).value;
|
|
205
|
+
return (await this._channel.queryCount({ selector })).value;
|
|
240
206
|
}
|
|
241
207
|
async content() {
|
|
242
208
|
return (await this._channel.content()).value;
|
|
243
209
|
}
|
|
244
210
|
async setContent(html, options = {}) {
|
|
245
|
-
const waitUntil = verifyLoadState(
|
|
246
|
-
await this._channel.setContent({
|
|
247
|
-
html,
|
|
248
|
-
...options,
|
|
249
|
-
waitUntil
|
|
250
|
-
});
|
|
211
|
+
const waitUntil = verifyLoadState("waitUntil", options.waitUntil === void 0 ? "load" : options.waitUntil);
|
|
212
|
+
await this._channel.setContent({ html, ...options, waitUntil });
|
|
251
213
|
}
|
|
252
214
|
name() {
|
|
253
|
-
return this._name ||
|
|
215
|
+
return this._name || "";
|
|
254
216
|
}
|
|
255
217
|
url() {
|
|
256
218
|
return this._url;
|
|
@@ -265,241 +227,160 @@ class Frame extends _channelOwner.ChannelOwner {
|
|
|
265
227
|
return this._detached;
|
|
266
228
|
}
|
|
267
229
|
async addScriptTag(options = {}) {
|
|
268
|
-
const copy = {
|
|
269
|
-
...options
|
|
270
|
-
};
|
|
230
|
+
const copy = { ...options };
|
|
271
231
|
if (copy.path) {
|
|
272
232
|
copy.content = (await this._platform.fs().promises.readFile(copy.path)).toString();
|
|
273
|
-
copy.content = (0,
|
|
233
|
+
copy.content = (0, import_clientHelper.addSourceUrlToScript)(copy.content, copy.path);
|
|
274
234
|
}
|
|
275
|
-
return
|
|
276
|
-
...copy
|
|
277
|
-
})).element);
|
|
235
|
+
return import_elementHandle.ElementHandle.from((await this._channel.addScriptTag({ ...copy })).element);
|
|
278
236
|
}
|
|
279
237
|
async addStyleTag(options = {}) {
|
|
280
|
-
const copy = {
|
|
281
|
-
...options
|
|
282
|
-
};
|
|
238
|
+
const copy = { ...options };
|
|
283
239
|
if (copy.path) {
|
|
284
240
|
copy.content = (await this._platform.fs().promises.readFile(copy.path)).toString();
|
|
285
|
-
copy.content +=
|
|
241
|
+
copy.content += "/*# sourceURL=" + copy.path.replace(/\n/g, "") + "*/";
|
|
286
242
|
}
|
|
287
|
-
return
|
|
288
|
-
...copy
|
|
289
|
-
})).element);
|
|
243
|
+
return import_elementHandle.ElementHandle.from((await this._channel.addStyleTag({ ...copy })).element);
|
|
290
244
|
}
|
|
291
245
|
async click(selector, options = {}) {
|
|
292
|
-
return await this._channel.click({
|
|
293
|
-
selector,
|
|
294
|
-
...options
|
|
295
|
-
});
|
|
246
|
+
return await this._channel.click({ selector, ...options });
|
|
296
247
|
}
|
|
297
248
|
async dblclick(selector, options = {}) {
|
|
298
|
-
return await this._channel.dblclick({
|
|
299
|
-
selector,
|
|
300
|
-
...options
|
|
301
|
-
});
|
|
249
|
+
return await this._channel.dblclick({ selector, ...options });
|
|
302
250
|
}
|
|
303
251
|
async dragAndDrop(source, target, options = {}) {
|
|
304
|
-
return await this._channel.dragAndDrop({
|
|
305
|
-
source,
|
|
306
|
-
target,
|
|
307
|
-
...options
|
|
308
|
-
});
|
|
252
|
+
return await this._channel.dragAndDrop({ source, target, ...options });
|
|
309
253
|
}
|
|
310
254
|
async tap(selector, options = {}) {
|
|
311
|
-
return await this._channel.tap({
|
|
312
|
-
selector,
|
|
313
|
-
...options
|
|
314
|
-
});
|
|
255
|
+
return await this._channel.tap({ selector, ...options });
|
|
315
256
|
}
|
|
316
257
|
async fill(selector, value, options = {}) {
|
|
317
|
-
return await this._channel.fill({
|
|
318
|
-
selector,
|
|
319
|
-
value,
|
|
320
|
-
...options
|
|
321
|
-
});
|
|
258
|
+
return await this._channel.fill({ selector, value, ...options });
|
|
322
259
|
}
|
|
323
260
|
async _highlight(selector) {
|
|
324
|
-
return await this._channel.highlight({
|
|
325
|
-
selector
|
|
326
|
-
});
|
|
261
|
+
return await this._channel.highlight({ selector });
|
|
327
262
|
}
|
|
328
263
|
locator(selector, options) {
|
|
329
|
-
return new
|
|
264
|
+
return new import_locator.Locator(this, selector, options);
|
|
330
265
|
}
|
|
331
266
|
getByTestId(testId) {
|
|
332
|
-
return this.locator((0,
|
|
267
|
+
return this.locator((0, import_locatorUtils.getByTestIdSelector)((0, import_locator.testIdAttributeName)(), testId));
|
|
333
268
|
}
|
|
334
269
|
getByAltText(text, options) {
|
|
335
|
-
return this.locator((0,
|
|
270
|
+
return this.locator((0, import_locatorUtils.getByAltTextSelector)(text, options));
|
|
336
271
|
}
|
|
337
272
|
getByLabel(text, options) {
|
|
338
|
-
return this.locator((0,
|
|
273
|
+
return this.locator((0, import_locatorUtils.getByLabelSelector)(text, options));
|
|
339
274
|
}
|
|
340
275
|
getByPlaceholder(text, options) {
|
|
341
|
-
return this.locator((0,
|
|
276
|
+
return this.locator((0, import_locatorUtils.getByPlaceholderSelector)(text, options));
|
|
342
277
|
}
|
|
343
278
|
getByText(text, options) {
|
|
344
|
-
return this.locator((0,
|
|
279
|
+
return this.locator((0, import_locatorUtils.getByTextSelector)(text, options));
|
|
345
280
|
}
|
|
346
281
|
getByTitle(text, options) {
|
|
347
|
-
return this.locator((0,
|
|
282
|
+
return this.locator((0, import_locatorUtils.getByTitleSelector)(text, options));
|
|
348
283
|
}
|
|
349
284
|
getByRole(role, options = {}) {
|
|
350
|
-
return this.locator((0,
|
|
285
|
+
return this.locator((0, import_locatorUtils.getByRoleSelector)(role, options));
|
|
351
286
|
}
|
|
352
287
|
frameLocator(selector) {
|
|
353
|
-
return new
|
|
288
|
+
return new import_locator.FrameLocator(this, selector);
|
|
354
289
|
}
|
|
355
290
|
async focus(selector, options = {}) {
|
|
356
|
-
await this._channel.focus({
|
|
357
|
-
selector,
|
|
358
|
-
...options
|
|
359
|
-
});
|
|
291
|
+
await this._channel.focus({ selector, ...options });
|
|
360
292
|
}
|
|
361
293
|
async textContent(selector, options = {}) {
|
|
362
|
-
const value = (await this._channel.textContent({
|
|
363
|
-
|
|
364
|
-
...options
|
|
365
|
-
})).value;
|
|
366
|
-
return value === undefined ? null : value;
|
|
294
|
+
const value = (await this._channel.textContent({ selector, ...options })).value;
|
|
295
|
+
return value === void 0 ? null : value;
|
|
367
296
|
}
|
|
368
297
|
async innerText(selector, options = {}) {
|
|
369
|
-
return (await this._channel.innerText({
|
|
370
|
-
selector,
|
|
371
|
-
...options
|
|
372
|
-
})).value;
|
|
298
|
+
return (await this._channel.innerText({ selector, ...options })).value;
|
|
373
299
|
}
|
|
374
300
|
async innerHTML(selector, options = {}) {
|
|
375
|
-
return (await this._channel.innerHTML({
|
|
376
|
-
selector,
|
|
377
|
-
...options
|
|
378
|
-
})).value;
|
|
301
|
+
return (await this._channel.innerHTML({ selector, ...options })).value;
|
|
379
302
|
}
|
|
380
303
|
async getAttribute(selector, name, options = {}) {
|
|
381
|
-
const value = (await this._channel.getAttribute({
|
|
382
|
-
|
|
383
|
-
name,
|
|
384
|
-
...options
|
|
385
|
-
})).value;
|
|
386
|
-
return value === undefined ? null : value;
|
|
304
|
+
const value = (await this._channel.getAttribute({ selector, name, ...options })).value;
|
|
305
|
+
return value === void 0 ? null : value;
|
|
387
306
|
}
|
|
388
307
|
async inputValue(selector, options = {}) {
|
|
389
|
-
return (await this._channel.inputValue({
|
|
390
|
-
selector,
|
|
391
|
-
...options
|
|
392
|
-
})).value;
|
|
308
|
+
return (await this._channel.inputValue({ selector, ...options })).value;
|
|
393
309
|
}
|
|
394
310
|
async isChecked(selector, options = {}) {
|
|
395
|
-
return (await this._channel.isChecked({
|
|
396
|
-
selector,
|
|
397
|
-
...options
|
|
398
|
-
})).value;
|
|
311
|
+
return (await this._channel.isChecked({ selector, ...options })).value;
|
|
399
312
|
}
|
|
400
313
|
async isDisabled(selector, options = {}) {
|
|
401
|
-
return (await this._channel.isDisabled({
|
|
402
|
-
selector,
|
|
403
|
-
...options
|
|
404
|
-
})).value;
|
|
314
|
+
return (await this._channel.isDisabled({ selector, ...options })).value;
|
|
405
315
|
}
|
|
406
316
|
async isEditable(selector, options = {}) {
|
|
407
|
-
return (await this._channel.isEditable({
|
|
408
|
-
selector,
|
|
409
|
-
...options
|
|
410
|
-
})).value;
|
|
317
|
+
return (await this._channel.isEditable({ selector, ...options })).value;
|
|
411
318
|
}
|
|
412
319
|
async isEnabled(selector, options = {}) {
|
|
413
|
-
return (await this._channel.isEnabled({
|
|
414
|
-
selector,
|
|
415
|
-
...options
|
|
416
|
-
})).value;
|
|
320
|
+
return (await this._channel.isEnabled({ selector, ...options })).value;
|
|
417
321
|
}
|
|
418
322
|
async isHidden(selector, options = {}) {
|
|
419
|
-
return (await this._channel.isHidden({
|
|
420
|
-
selector,
|
|
421
|
-
...options
|
|
422
|
-
})).value;
|
|
323
|
+
return (await this._channel.isHidden({ selector, ...options })).value;
|
|
423
324
|
}
|
|
424
325
|
async isVisible(selector, options = {}) {
|
|
425
|
-
return (await this._channel.isVisible({
|
|
426
|
-
selector,
|
|
427
|
-
...options
|
|
428
|
-
})).value;
|
|
326
|
+
return (await this._channel.isVisible({ selector, ...options })).value;
|
|
429
327
|
}
|
|
430
328
|
async hover(selector, options = {}) {
|
|
431
|
-
await this._channel.hover({
|
|
432
|
-
selector,
|
|
433
|
-
...options
|
|
434
|
-
});
|
|
329
|
+
await this._channel.hover({ selector, ...options });
|
|
435
330
|
}
|
|
436
331
|
async selectOption(selector, values, options = {}) {
|
|
437
|
-
return (await this._channel.selectOption({
|
|
438
|
-
selector,
|
|
439
|
-
...(0, _elementHandle.convertSelectOptionValues)(values),
|
|
440
|
-
...options
|
|
441
|
-
})).values;
|
|
332
|
+
return (await this._channel.selectOption({ selector, ...(0, import_elementHandle.convertSelectOptionValues)(values), ...options })).values;
|
|
442
333
|
}
|
|
443
334
|
async setInputFiles(selector, files, options = {}) {
|
|
444
|
-
const converted = await (0,
|
|
445
|
-
await this._channel.setInputFiles({
|
|
446
|
-
selector,
|
|
447
|
-
...converted,
|
|
448
|
-
...options
|
|
449
|
-
});
|
|
335
|
+
const converted = await (0, import_elementHandle.convertInputFiles)(this._platform, files, this.page().context());
|
|
336
|
+
await this._channel.setInputFiles({ selector, ...converted, ...options });
|
|
450
337
|
}
|
|
451
338
|
async type(selector, text, options = {}) {
|
|
452
|
-
await this._channel.type({
|
|
453
|
-
selector,
|
|
454
|
-
text,
|
|
455
|
-
...options
|
|
456
|
-
});
|
|
339
|
+
await this._channel.type({ selector, text, ...options });
|
|
457
340
|
}
|
|
458
341
|
async press(selector, key, options = {}) {
|
|
459
|
-
await this._channel.press({
|
|
460
|
-
selector,
|
|
461
|
-
key,
|
|
462
|
-
...options
|
|
463
|
-
});
|
|
342
|
+
await this._channel.press({ selector, key, ...options });
|
|
464
343
|
}
|
|
465
344
|
async check(selector, options = {}) {
|
|
466
|
-
await this._channel.check({
|
|
467
|
-
selector,
|
|
468
|
-
...options
|
|
469
|
-
});
|
|
345
|
+
await this._channel.check({ selector, ...options });
|
|
470
346
|
}
|
|
471
347
|
async uncheck(selector, options = {}) {
|
|
472
|
-
await this._channel.uncheck({
|
|
473
|
-
selector,
|
|
474
|
-
...options
|
|
475
|
-
});
|
|
348
|
+
await this._channel.uncheck({ selector, ...options });
|
|
476
349
|
}
|
|
477
350
|
async setChecked(selector, checked, options) {
|
|
478
|
-
if (checked)
|
|
351
|
+
if (checked)
|
|
352
|
+
await this.check(selector, options);
|
|
353
|
+
else
|
|
354
|
+
await this.uncheck(selector, options);
|
|
479
355
|
}
|
|
480
356
|
async waitForTimeout(timeout) {
|
|
481
|
-
await this._channel.waitForTimeout({
|
|
482
|
-
timeout
|
|
483
|
-
});
|
|
357
|
+
await this._channel.waitForTimeout({ timeout });
|
|
484
358
|
}
|
|
485
359
|
async waitForFunction(pageFunction, arg, options = {}) {
|
|
486
|
-
if (typeof options.polling ===
|
|
360
|
+
if (typeof options.polling === "string")
|
|
361
|
+
(0, import_assert.assert)(options.polling === "raf", "Unknown polling option: " + options.polling);
|
|
487
362
|
const result = await this._channel.waitForFunction({
|
|
488
363
|
...options,
|
|
489
|
-
pollingInterval: options.polling ===
|
|
364
|
+
pollingInterval: options.polling === "raf" ? void 0 : options.polling,
|
|
490
365
|
expression: String(pageFunction),
|
|
491
|
-
isFunction: typeof pageFunction ===
|
|
492
|
-
arg: (0,
|
|
366
|
+
isFunction: typeof pageFunction === "function",
|
|
367
|
+
arg: (0, import_jsHandle.serializeArgument)(arg)
|
|
493
368
|
});
|
|
494
|
-
return
|
|
369
|
+
return import_jsHandle.JSHandle.from(result.handle);
|
|
495
370
|
}
|
|
496
371
|
async title() {
|
|
497
372
|
return (await this._channel.title()).value;
|
|
498
373
|
}
|
|
499
374
|
}
|
|
500
|
-
exports.Frame = Frame;
|
|
501
375
|
function verifyLoadState(name, waitUntil) {
|
|
502
|
-
if (waitUntil ===
|
|
503
|
-
|
|
376
|
+
if (waitUntil === "networkidle0")
|
|
377
|
+
waitUntil = "networkidle";
|
|
378
|
+
if (!import_types.kLifecycleEvents.has(waitUntil))
|
|
379
|
+
throw new Error(`${name}: expected one of (load|domcontentloaded|networkidle|commit)`);
|
|
504
380
|
return waitUntil;
|
|
505
|
-
}
|
|
381
|
+
}
|
|
382
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
383
|
+
0 && (module.exports = {
|
|
384
|
+
Frame,
|
|
385
|
+
verifyLoadState
|
|
386
|
+
});
|