369 lines
12 KiB
TypeScript
369 lines
12 KiB
TypeScript
/**
|
|
* Copyright 2019 Google Inc. All rights reserved.
|
|
* Modifications 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 fs from 'fs';
|
|
import * as types from '../types';
|
|
import { ExecutionContext } from './ExecutionContext';
|
|
import { Frame } from './Frame';
|
|
import { FrameManager } from './FrameManager';
|
|
import { helper } from '../helper';
|
|
import { ElementHandle, JSHandle } from './JSHandle';
|
|
import { LifecycleWatcher } from './LifecycleWatcher';
|
|
import { TimeoutSettings } from '../TimeoutSettings';
|
|
import { WaitTask, WaitTaskParams } from '../waitTask';
|
|
|
|
const readFileAsync = helper.promisify(fs.readFile);
|
|
|
|
export class DOMWorld {
|
|
private _frameManager: FrameManager;
|
|
private _frame: Frame;
|
|
private _timeoutSettings: TimeoutSettings;
|
|
private _documentPromise: Promise<ElementHandle> | null = null;
|
|
private _contextPromise: Promise<ExecutionContext>;
|
|
private _contextResolveCallback: ((c: ExecutionContext) => void) | null;
|
|
private _context: ExecutionContext | null;
|
|
_waitTasks = new Set<WaitTask<JSHandle>>();
|
|
private _detached = false;
|
|
|
|
constructor(frameManager: FrameManager, frame: Frame, timeoutSettings: TimeoutSettings) {
|
|
this._frameManager = frameManager;
|
|
this._frame = frame;
|
|
this._timeoutSettings = timeoutSettings;
|
|
this._contextPromise;
|
|
this._setContext(null);
|
|
}
|
|
|
|
frame(): Frame {
|
|
return this._frame;
|
|
}
|
|
|
|
_setContext(context: ExecutionContext | null) {
|
|
this._context = context;
|
|
if (context) {
|
|
this._contextResolveCallback.call(null, context);
|
|
this._contextResolveCallback = null;
|
|
for (const waitTask of this._waitTasks)
|
|
waitTask.rerun(context);
|
|
} else {
|
|
this._documentPromise = null;
|
|
this._contextPromise = new Promise(fulfill => {
|
|
this._contextResolveCallback = fulfill;
|
|
});
|
|
}
|
|
}
|
|
|
|
_hasContext(): boolean {
|
|
return !this._contextResolveCallback;
|
|
}
|
|
|
|
_detach() {
|
|
this._detached = true;
|
|
for (const waitTask of this._waitTasks)
|
|
waitTask.terminate(new Error('waitForFunction failed: frame got detached.'));
|
|
}
|
|
|
|
executionContext(): Promise<ExecutionContext> {
|
|
if (this._detached)
|
|
throw new Error(`Execution Context is not available in detached frame "${this._frame.url()}" (are you trying to evaluate?)`);
|
|
return this._contextPromise;
|
|
}
|
|
|
|
evaluateHandle: types.EvaluateHandle<JSHandle> = async (pageFunction, ...args) => {
|
|
const context = await this.executionContext();
|
|
return context.evaluateHandle(pageFunction, ...args as any);
|
|
}
|
|
|
|
evaluate: types.Evaluate<JSHandle> = async (pageFunction, ...args) => {
|
|
const context = await this.executionContext();
|
|
return context.evaluate(pageFunction, ...args as any);
|
|
}
|
|
|
|
async $(selector: string): Promise<ElementHandle | null> {
|
|
const document = await this._document();
|
|
const value = await document.$(selector);
|
|
return value;
|
|
}
|
|
|
|
async _document(): Promise<ElementHandle> {
|
|
if (this._documentPromise)
|
|
return this._documentPromise;
|
|
this._documentPromise = this.executionContext().then(async context => {
|
|
const document = await context.evaluateHandle('document');
|
|
return document.asElement();
|
|
});
|
|
return this._documentPromise;
|
|
}
|
|
|
|
async $x(expression: string): Promise<ElementHandle[]> {
|
|
const document = await this._document();
|
|
const value = await document.$x(expression);
|
|
return value;
|
|
}
|
|
|
|
$eval: types.$Eval<JSHandle> = async (selector, pageFunction, ...args) => {
|
|
const document = await this._document();
|
|
return document.$eval(selector, pageFunction, ...args as any);
|
|
}
|
|
|
|
$$eval: types.$$Eval<JSHandle> = async (selector, pageFunction, ...args) => {
|
|
const document = await this._document();
|
|
const value = await document.$$eval(selector, pageFunction, ...args as any);
|
|
return value;
|
|
}
|
|
|
|
async $$(selector: string): Promise<ElementHandle[]> {
|
|
const document = await this._document();
|
|
const value = await document.$$(selector);
|
|
return value;
|
|
}
|
|
|
|
async content(): Promise<string> {
|
|
return await this.evaluate(() => {
|
|
let retVal = '';
|
|
if (document.doctype)
|
|
retVal = new XMLSerializer().serializeToString(document.doctype);
|
|
if (document.documentElement)
|
|
retVal += document.documentElement.outerHTML;
|
|
return retVal;
|
|
});
|
|
}
|
|
|
|
async setContent(html: string, options: {
|
|
timeout?: number;
|
|
waitUntil?: string | string[];
|
|
} = {}) {
|
|
const {
|
|
waitUntil = ['load'],
|
|
timeout = this._timeoutSettings.navigationTimeout(),
|
|
} = options;
|
|
// We rely upon the fact that document.open() will reset frame lifecycle with "init"
|
|
// lifecycle event. @see https://crrev.com/608658
|
|
await this.evaluate(html => {
|
|
document.open();
|
|
document.write(html);
|
|
document.close();
|
|
}, html);
|
|
const watcher = new LifecycleWatcher(this._frameManager, this._frame, waitUntil, timeout);
|
|
const error = await Promise.race([
|
|
watcher.timeoutOrTerminationPromise(),
|
|
watcher.lifecyclePromise(),
|
|
]);
|
|
watcher.dispose();
|
|
if (error)
|
|
throw error;
|
|
}
|
|
|
|
async addScriptTag(options: {
|
|
url?: string; path?: string;
|
|
content?: string;
|
|
type?: string;
|
|
}): Promise<ElementHandle> {
|
|
const {
|
|
url = null,
|
|
path = null,
|
|
content = null,
|
|
type = ''
|
|
} = options;
|
|
if (url !== null) {
|
|
try {
|
|
const context = await this.executionContext();
|
|
return (await context.evaluateHandle(addScriptUrl, url, type)).asElement();
|
|
} catch (error) {
|
|
throw new Error(`Loading script from ${url} failed`);
|
|
}
|
|
}
|
|
|
|
if (path !== null) {
|
|
let contents = await readFileAsync(path, 'utf8');
|
|
contents += '//# sourceURL=' + path.replace(/\n/g, '');
|
|
const context = await this.executionContext();
|
|
return (await context.evaluateHandle(addScriptContent, contents, type)).asElement();
|
|
}
|
|
|
|
if (content !== null) {
|
|
const context = await this.executionContext();
|
|
return (await context.evaluateHandle(addScriptContent, content, type)).asElement();
|
|
}
|
|
|
|
throw new Error('Provide an object with a `url`, `path` or `content` property');
|
|
|
|
async function addScriptUrl(url: string, type: string): Promise<HTMLElement> {
|
|
const script = document.createElement('script');
|
|
script.src = url;
|
|
if (type)
|
|
script.type = type;
|
|
const promise = new Promise((res, rej) => {
|
|
script.onload = res;
|
|
script.onerror = rej;
|
|
});
|
|
document.head.appendChild(script);
|
|
await promise;
|
|
return script;
|
|
}
|
|
|
|
function addScriptContent(content: string, type: string = 'text/javascript'): HTMLElement {
|
|
const script = document.createElement('script');
|
|
script.type = type;
|
|
script.text = content;
|
|
let error = null;
|
|
script.onerror = e => error = e;
|
|
document.head.appendChild(script);
|
|
if (error)
|
|
throw error;
|
|
return script;
|
|
}
|
|
}
|
|
|
|
async addStyleTag(options: { url?: string; path?: string; content?: string; }): Promise<ElementHandle> {
|
|
const {
|
|
url = null,
|
|
path = null,
|
|
content = null
|
|
} = options;
|
|
if (url !== null) {
|
|
try {
|
|
const context = await this.executionContext();
|
|
return (await context.evaluateHandle(addStyleUrl, url)).asElement();
|
|
} catch (error) {
|
|
throw new Error(`Loading style from ${url} failed`);
|
|
}
|
|
}
|
|
|
|
if (path !== null) {
|
|
let contents = await readFileAsync(path, 'utf8');
|
|
contents += '/*# sourceURL=' + path.replace(/\n/g, '') + '*/';
|
|
const context = await this.executionContext();
|
|
return (await context.evaluateHandle(addStyleContent, contents)).asElement();
|
|
}
|
|
|
|
if (content !== null) {
|
|
const context = await this.executionContext();
|
|
return (await context.evaluateHandle(addStyleContent, content)).asElement();
|
|
}
|
|
|
|
throw new Error('Provide an object with a `url`, `path` or `content` property');
|
|
|
|
async function addStyleUrl(url: string): Promise<HTMLElement> {
|
|
const link = document.createElement('link');
|
|
link.rel = 'stylesheet';
|
|
link.href = url;
|
|
const promise = new Promise((res, rej) => {
|
|
link.onload = res;
|
|
link.onerror = rej;
|
|
});
|
|
document.head.appendChild(link);
|
|
await promise;
|
|
return link;
|
|
}
|
|
|
|
async function addStyleContent(content: string): Promise<HTMLElement> {
|
|
const style = document.createElement('style');
|
|
style.type = 'text/css';
|
|
style.appendChild(document.createTextNode(content));
|
|
const promise = new Promise((res, rej) => {
|
|
style.onload = res;
|
|
style.onerror = rej;
|
|
});
|
|
document.head.appendChild(style);
|
|
await promise;
|
|
return style;
|
|
}
|
|
}
|
|
|
|
waitForSelector(selector: string, options: { visible?: boolean; hidden?: boolean; timeout?: number; } | undefined): Promise<ElementHandle | null> {
|
|
return this._waitForSelectorOrXPath(selector, false, options);
|
|
}
|
|
|
|
waitForXPath(xpath: string, options: { visible?: boolean; hidden?: boolean; timeout?: number; } | undefined): Promise<ElementHandle | null> {
|
|
return this._waitForSelectorOrXPath(xpath, true, options);
|
|
}
|
|
|
|
waitForFunction(pageFunction: Function | string, options: { polling?: string | number; timeout?: number; } = {}, ...args): Promise<JSHandle> {
|
|
const {
|
|
polling = 'raf',
|
|
timeout = this._timeoutSettings.timeout(),
|
|
} = options;
|
|
const params: WaitTaskParams = {
|
|
predicateBody: pageFunction,
|
|
title: 'function',
|
|
polling,
|
|
timeout,
|
|
args
|
|
};
|
|
return this._scheduleWaitTask(params);
|
|
}
|
|
|
|
private _scheduleWaitTask(params: WaitTaskParams): Promise<JSHandle> {
|
|
const task = new WaitTask(params, () => this._waitTasks.delete(task));
|
|
this._waitTasks.add(task);
|
|
if (this._context)
|
|
task.rerun(this._context);
|
|
return task.promise;
|
|
}
|
|
|
|
async title(): Promise<string> {
|
|
return this.evaluate(() => document.title);
|
|
}
|
|
|
|
async _waitForSelectorOrXPath(
|
|
selectorOrXPath: string,
|
|
isXPath: boolean,
|
|
options: { visible?: boolean; hidden?: boolean; timeout?: number; } = {}): Promise<ElementHandle | null> {
|
|
const {
|
|
visible: waitForVisible = false,
|
|
hidden: waitForHidden = false,
|
|
timeout = this._timeoutSettings.timeout(),
|
|
} = options;
|
|
const polling = waitForVisible || waitForHidden ? 'raf' : 'mutation';
|
|
const title = `${isXPath ? 'XPath' : 'selector'} "${selectorOrXPath}"${waitForHidden ? ' to be hidden' : ''}`;
|
|
const params: WaitTaskParams = {
|
|
predicateBody: predicate,
|
|
title,
|
|
polling,
|
|
timeout,
|
|
args: [selectorOrXPath, isXPath, waitForVisible, waitForHidden]
|
|
};
|
|
const handle = await this._scheduleWaitTask(params);
|
|
if (!handle.asElement()) {
|
|
await handle.dispose();
|
|
return null;
|
|
}
|
|
return handle.asElement();
|
|
|
|
function predicate(selectorOrXPath: string, isXPath: boolean, waitForVisible: boolean, waitForHidden: boolean): (Node | boolean) | null {
|
|
const node = isXPath
|
|
? document.evaluate(selectorOrXPath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue
|
|
: document.querySelector(selectorOrXPath);
|
|
if (!node)
|
|
return waitForHidden;
|
|
if (!waitForVisible && !waitForHidden)
|
|
return node;
|
|
const element = (node.nodeType === Node.TEXT_NODE ? node.parentElement : node) as Element;
|
|
const style = window.getComputedStyle(element);
|
|
const isVisible = style && style.visibility !== 'hidden' && hasVisibleBoundingBox();
|
|
const success = (waitForVisible === isVisible || waitForHidden === !isVisible);
|
|
return success ? node : null;
|
|
|
|
function hasVisibleBoundingBox(): boolean {
|
|
const rect = element.getBoundingClientRect();
|
|
return !!(rect.top || rect.bottom || rect.width || rect.height);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|