2020-06-26 01:05:36 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (c) Microsoft Corporation.
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import * as js from '../../javascript';
|
2020-06-26 21:28:27 +02:00
|
|
|
import { JSHandleChannel, JSHandleInitializer } from '../channels';
|
2020-06-26 01:05:36 +02:00
|
|
|
import { Dispatcher, DispatcherScope } from '../dispatcher';
|
|
|
|
|
import { convertArg } from './frameDispatcher';
|
|
|
|
|
|
2020-06-27 02:24:21 +02:00
|
|
|
export class JSHandleDispatcher extends Dispatcher<js.JSHandle, JSHandleInitializer> implements JSHandleChannel {
|
2020-06-26 01:05:36 +02:00
|
|
|
|
2020-06-26 21:28:27 +02:00
|
|
|
constructor(scope: DispatcherScope, jsHandle: js.JSHandle) {
|
|
|
|
|
super(scope, jsHandle, jsHandle.asElement() ? 'elementHandle' : 'jsHandle', {
|
|
|
|
|
preview: jsHandle.toString(),
|
|
|
|
|
});
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async evaluateExpression(params: { expression: string, isFunction: boolean, arg: any }): Promise<any> {
|
2020-06-27 02:24:21 +02:00
|
|
|
return this._object._evaluateExpression(params.expression, params.isFunction, true /* returnByValue */, convertArg(this._scope, params.arg));
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async evaluateExpressionHandle(params: { expression: string, isFunction: boolean, arg: any}): Promise<JSHandleChannel> {
|
2020-06-27 02:24:21 +02:00
|
|
|
const jsHandle = await this._object._evaluateExpression(params.expression, params.isFunction, false /* returnByValue */, convertArg(this._scope, params.arg));
|
2020-06-26 01:05:36 +02:00
|
|
|
return new JSHandleDispatcher(this._scope, jsHandle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async getPropertyList(): Promise<{ name: string, value: JSHandleChannel }[]> {
|
2020-06-27 02:24:21 +02:00
|
|
|
const map = await this._object.getProperties();
|
2020-06-26 01:05:36 +02:00
|
|
|
const result = [];
|
|
|
|
|
for (const [name, value] of map)
|
|
|
|
|
result.push({ name, value: new JSHandleDispatcher(this._scope, value) });
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async jsonValue(): Promise<any> {
|
2020-06-27 02:24:21 +02:00
|
|
|
return this._object.jsonValue();
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async dispose() {
|
2020-06-27 02:24:21 +02:00
|
|
|
await this._object.dispose();
|
2020-06-26 01:05:36 +02:00
|
|
|
}
|
|
|
|
|
}
|