2019-11-27 16:02:31 -08:00
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
|
|
// Licensed under the MIT license.
|
|
|
|
|
|
|
|
import * as frames from './frames';
|
2019-11-27 16:03:51 -08:00
|
|
|
import * as input from './input';
|
|
|
|
import * as js from './javascript';
|
|
|
|
import * as types from './types';
|
2019-11-28 12:50:52 -08:00
|
|
|
import * as injectedSource from './generated/injectedSource';
|
|
|
|
import * as cssSelectorEngineSource from './generated/cssSelectorEngineSource';
|
|
|
|
import * as xpathSelectorEngineSource from './generated/xpathSelectorEngineSource';
|
2019-12-05 09:54:50 -08:00
|
|
|
import { assert, helper, debugError } from './helper';
|
2019-12-02 13:12:28 -08:00
|
|
|
import Injected from './injected/injected';
|
2019-11-27 16:02:31 -08:00
|
|
|
|
|
|
|
export interface DOMWorldDelegate {
|
2019-11-28 12:50:52 -08:00
|
|
|
keyboard: input.Keyboard;
|
|
|
|
mouse: input.Mouse;
|
|
|
|
frame: frames.Frame;
|
2019-11-27 16:02:31 -08:00
|
|
|
isJavascriptEnabled(): boolean;
|
2019-12-02 13:12:28 -08:00
|
|
|
isElement(remoteObject: any): boolean;
|
2019-11-27 16:02:31 -08:00
|
|
|
contentFrame(handle: ElementHandle): Promise<frames.Frame | null>;
|
2019-12-05 09:54:50 -08:00
|
|
|
contentQuads(handle: ElementHandle): Promise<types.Quad[] | null>;
|
|
|
|
layoutViewport(): Promise<{ width: number, height: number }>;
|
2019-11-27 16:03:51 -08:00
|
|
|
boundingBox(handle: ElementHandle): Promise<types.Rect | null>;
|
2019-12-05 14:48:39 -08:00
|
|
|
screenshot(handle: ElementHandle, options?: types.ScreenshotOptions): Promise<string | Buffer>;
|
2019-11-27 16:02:31 -08:00
|
|
|
setInputFiles(handle: ElementHandle, files: input.FilePayload[]): Promise<void>;
|
2019-12-05 16:26:09 -08:00
|
|
|
adoptElementHandle<T extends Node>(handle: ElementHandle<T>, to: DOMWorld): Promise<ElementHandle<T>>;
|
2019-11-28 12:50:52 -08:00
|
|
|
}
|
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
type ScopedSelector = types.Selector & { scope?: ElementHandle };
|
2019-12-04 13:11:10 -08:00
|
|
|
type ResolvedSelector = { scope?: ElementHandle, selector: string, visible?: boolean, disposeScope?: boolean };
|
2019-12-02 17:33:44 -08:00
|
|
|
|
2019-11-28 12:50:52 -08:00
|
|
|
export class DOMWorld {
|
|
|
|
readonly context: js.ExecutionContext;
|
|
|
|
readonly delegate: DOMWorldDelegate;
|
|
|
|
|
|
|
|
private _injectedPromise?: Promise<js.JSHandle>;
|
|
|
|
|
|
|
|
constructor(context: js.ExecutionContext, delegate: DOMWorldDelegate) {
|
|
|
|
this.context = context;
|
|
|
|
this.delegate = delegate;
|
|
|
|
}
|
|
|
|
|
2019-12-02 17:33:44 -08:00
|
|
|
createHandle(remoteObject: any): ElementHandle | null {
|
2019-12-02 13:12:28 -08:00
|
|
|
if (this.delegate.isElement(remoteObject))
|
|
|
|
return new ElementHandle(this.context, remoteObject);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-12-03 10:43:13 -08:00
|
|
|
injected(): Promise<js.JSHandle> {
|
2019-11-28 12:50:52 -08:00
|
|
|
if (!this._injectedPromise) {
|
|
|
|
const engineSources = [cssSelectorEngineSource.source, xpathSelectorEngineSource.source];
|
|
|
|
const source = `
|
|
|
|
new (${injectedSource.source})([
|
|
|
|
${engineSources.join(',\n')}
|
|
|
|
])
|
|
|
|
`;
|
|
|
|
this._injectedPromise = this.context.evaluateHandle(source);
|
|
|
|
}
|
|
|
|
return this._injectedPromise;
|
|
|
|
}
|
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
async adoptElementHandle<T extends Node>(handle: ElementHandle<T>): Promise<ElementHandle<T>> {
|
2019-12-02 17:33:44 -08:00
|
|
|
assert(handle.executionContext() !== this.context, 'Should not adopt to the same context');
|
|
|
|
return this.delegate.adoptElementHandle(handle, this);
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
async resolveSelector(selector: string | ScopedSelector): Promise<ResolvedSelector> {
|
2019-12-02 17:33:44 -08:00
|
|
|
if (helper.isString(selector))
|
2019-12-03 10:43:13 -08:00
|
|
|
return { selector: normalizeSelector(selector) };
|
2019-12-04 13:11:10 -08:00
|
|
|
if (selector.scope && selector.scope.executionContext() !== this.context) {
|
|
|
|
const scope = await this.adoptElementHandle(selector.scope);
|
|
|
|
return { scope, selector: normalizeSelector(selector.selector), disposeScope: true, visible: selector.visible };
|
2019-12-02 17:33:44 -08:00
|
|
|
}
|
2019-12-04 13:11:10 -08:00
|
|
|
return { scope: selector.scope, selector: normalizeSelector(selector.selector), visible: selector.visible };
|
2019-11-28 12:50:52 -08:00
|
|
|
}
|
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
async $(selector: string | ScopedSelector): Promise<ElementHandle<Element> | null> {
|
2019-12-04 13:11:10 -08:00
|
|
|
const resolved = await this.resolveSelector(selector);
|
2019-12-02 17:33:44 -08:00
|
|
|
const handle = await this.context.evaluateHandle(
|
2019-12-05 16:26:09 -08:00
|
|
|
(injected: Injected, selector: string, scope?: Node, visible?: boolean) => {
|
2019-12-04 13:11:10 -08:00
|
|
|
const element = injected.querySelector(selector, scope || document);
|
|
|
|
if (visible === undefined || !element)
|
|
|
|
return element;
|
|
|
|
return injected.isVisible(element) === visible ? element : undefined;
|
|
|
|
},
|
|
|
|
await this.injected(), resolved.selector, resolved.scope, resolved.visible
|
2019-12-02 17:33:44 -08:00
|
|
|
);
|
2019-12-04 13:11:10 -08:00
|
|
|
if (resolved.disposeScope)
|
|
|
|
await resolved.scope.dispose();
|
2019-12-02 17:33:44 -08:00
|
|
|
if (!handle.asElement())
|
2019-11-28 12:50:52 -08:00
|
|
|
await handle.dispose();
|
2019-12-02 17:33:44 -08:00
|
|
|
return handle.asElement();
|
2019-11-28 12:50:52 -08:00
|
|
|
}
|
2019-11-27 16:02:31 -08:00
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
async $$(selector: string | ScopedSelector): Promise<ElementHandle<Element>[]> {
|
2019-12-04 13:11:10 -08:00
|
|
|
const resolved = await this.resolveSelector(selector);
|
2019-12-02 17:33:44 -08:00
|
|
|
const arrayHandle = await this.context.evaluateHandle(
|
2019-12-05 16:26:09 -08:00
|
|
|
(injected: Injected, selector: string, scope?: Node, visible?: boolean) => {
|
2019-12-04 13:11:10 -08:00
|
|
|
const elements = injected.querySelectorAll(selector, scope || document);
|
|
|
|
if (visible !== undefined)
|
|
|
|
return elements.filter(element => injected.isVisible(element) === visible);
|
|
|
|
return elements;
|
|
|
|
},
|
|
|
|
await this.injected(), resolved.selector, resolved.scope, resolved.visible
|
2019-12-02 17:33:44 -08:00
|
|
|
);
|
2019-12-04 13:11:10 -08:00
|
|
|
if (resolved.disposeScope)
|
|
|
|
await resolved.scope.dispose();
|
2019-12-02 17:33:44 -08:00
|
|
|
const properties = await arrayHandle.getProperties();
|
|
|
|
await arrayHandle.dispose();
|
|
|
|
const result = [];
|
|
|
|
for (const property of properties.values()) {
|
|
|
|
const elementHandle = property.asElement();
|
|
|
|
if (elementHandle)
|
|
|
|
result.push(elementHandle);
|
|
|
|
else
|
|
|
|
await property.dispose();
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
$eval: types.$Eval<string | ScopedSelector> = async (selector, pageFunction, ...args) => {
|
2019-12-02 17:33:44 -08:00
|
|
|
const elementHandle = await this.$(selector);
|
|
|
|
if (!elementHandle)
|
2019-12-04 13:11:10 -08:00
|
|
|
throw new Error(`Error: failed to find element matching selector "${types.selectorToString(selector)}"`);
|
2019-12-02 17:33:44 -08:00
|
|
|
const result = await elementHandle.evaluate(pageFunction, ...args as any);
|
|
|
|
await elementHandle.dispose();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
$$eval: types.$$Eval<string | ScopedSelector> = async (selector, pageFunction, ...args) => {
|
|
|
|
const resolved = await this.resolveSelector(selector);
|
2019-12-02 17:33:44 -08:00
|
|
|
const arrayHandle = await this.context.evaluateHandle(
|
2019-12-05 16:26:09 -08:00
|
|
|
(injected: Injected, selector: string, scope?: Node, visible?: boolean) => {
|
2019-12-04 13:11:10 -08:00
|
|
|
const elements = injected.querySelectorAll(selector, scope || document);
|
|
|
|
if (visible !== undefined)
|
|
|
|
return elements.filter(element => injected.isVisible(element) === visible);
|
|
|
|
return elements;
|
|
|
|
},
|
|
|
|
await this.injected(), resolved.selector, resolved.scope, resolved.visible
|
2019-12-02 17:33:44 -08:00
|
|
|
);
|
|
|
|
const result = await arrayHandle.evaluate(pageFunction, ...args as any);
|
|
|
|
await arrayHandle.dispose();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
2019-12-02 13:12:28 -08:00
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
export class ElementHandle<T extends Node = Node> extends js.JSHandle<T> {
|
2019-12-06 11:33:24 -08:00
|
|
|
readonly _world: DOMWorld;
|
2019-11-27 16:02:31 -08:00
|
|
|
|
2019-12-02 13:12:28 -08:00
|
|
|
constructor(context: js.ExecutionContext, remoteObject: any) {
|
|
|
|
super(context, remoteObject);
|
2019-11-28 12:50:52 -08:00
|
|
|
assert(context._domWorld, 'Element handle should have a dom world');
|
|
|
|
this._world = context._domWorld;
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
asElement(): ElementHandle<T> | null {
|
2019-11-27 16:02:31 -08:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
async contentFrame(): Promise<frames.Frame | null> {
|
2019-11-28 12:50:52 -08:00
|
|
|
return this._world.delegate.contentFrame(this);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async _scrollIntoViewIfNeeded() {
|
2019-12-05 16:26:09 -08:00
|
|
|
const error = await this.evaluate(async (node: Node, pageJavascriptEnabled: boolean) => {
|
|
|
|
if (!node.isConnected)
|
2019-11-27 16:02:31 -08:00
|
|
|
return 'Node is detached from document';
|
2019-12-05 16:26:09 -08:00
|
|
|
if (node.nodeType !== Node.ELEMENT_NODE)
|
2019-11-27 16:02:31 -08:00
|
|
|
return 'Node is not of type HTMLElement';
|
2019-12-05 16:26:09 -08:00
|
|
|
const element = node as Element;
|
2019-11-27 16:02:31 -08:00
|
|
|
// force-scroll if page's javascript is disabled.
|
|
|
|
if (!pageJavascriptEnabled) {
|
2019-12-06 11:52:32 -08:00
|
|
|
// @ts-ignore because only Chromium still supports 'instant'
|
2019-11-27 16:02:31 -08:00
|
|
|
element.scrollIntoView({block: 'center', inline: 'center', behavior: 'instant'});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const visibleRatio = await new Promise(resolve => {
|
|
|
|
const observer = new IntersectionObserver(entries => {
|
|
|
|
resolve(entries[0].intersectionRatio);
|
|
|
|
observer.disconnect();
|
|
|
|
});
|
|
|
|
observer.observe(element);
|
|
|
|
// Firefox doesn't call IntersectionObserver callback unless
|
|
|
|
// there are rafs.
|
|
|
|
requestAnimationFrame(() => {});
|
|
|
|
});
|
2019-12-05 16:26:09 -08:00
|
|
|
if (visibleRatio !== 1.0) {
|
2019-12-06 11:52:32 -08:00
|
|
|
// @ts-ignore because only Chromium still supports 'instant'
|
2019-11-27 16:02:31 -08:00
|
|
|
element.scrollIntoView({block: 'center', inline: 'center', behavior: 'instant'});
|
2019-12-05 16:26:09 -08:00
|
|
|
}
|
2019-11-27 16:02:31 -08:00
|
|
|
return false;
|
2019-11-28 12:50:52 -08:00
|
|
|
}, this._world.delegate.isJavascriptEnabled());
|
2019-11-27 16:02:31 -08:00
|
|
|
if (error)
|
|
|
|
throw new Error(error);
|
|
|
|
}
|
|
|
|
|
2019-12-05 09:54:50 -08:00
|
|
|
private async _ensurePointerActionPoint(relativePoint?: types.Point): Promise<types.Point> {
|
|
|
|
await this._scrollIntoViewIfNeeded();
|
|
|
|
if (!relativePoint)
|
|
|
|
return this._clickablePoint();
|
|
|
|
let r = await this._viewportPointAndScroll(relativePoint);
|
|
|
|
if (r.scrollX || r.scrollY) {
|
|
|
|
const error = await this.evaluate((element, scrollX, scrollY) => {
|
|
|
|
if (!element.ownerDocument || !element.ownerDocument.defaultView)
|
|
|
|
return 'Node does not have a containing window';
|
|
|
|
element.ownerDocument.defaultView.scrollBy(scrollX, scrollY);
|
|
|
|
return false;
|
|
|
|
}, r.scrollX, r.scrollY);
|
|
|
|
if (error)
|
|
|
|
throw new Error(error);
|
|
|
|
r = await this._viewportPointAndScroll(relativePoint);
|
|
|
|
if (r.scrollX || r.scrollY)
|
|
|
|
throw new Error('Failed to scroll relative point into viewport');
|
|
|
|
}
|
|
|
|
return r.point;
|
|
|
|
}
|
|
|
|
|
|
|
|
private async _clickablePoint(): Promise<types.Point> {
|
|
|
|
const intersectQuadWithViewport = (quad: types.Quad): types.Quad => {
|
|
|
|
return quad.map(point => ({
|
|
|
|
x: Math.min(Math.max(point.x, 0), metrics.width),
|
|
|
|
y: Math.min(Math.max(point.y, 0), metrics.height),
|
|
|
|
})) as types.Quad;
|
|
|
|
};
|
|
|
|
|
|
|
|
const computeQuadArea = (quad: types.Quad) => {
|
|
|
|
// Compute sum of all directed areas of adjacent triangles
|
|
|
|
// https://en.wikipedia.org/wiki/Polygon#Simple_polygons
|
|
|
|
let area = 0;
|
|
|
|
for (let i = 0; i < quad.length; ++i) {
|
|
|
|
const p1 = quad[i];
|
|
|
|
const p2 = quad[(i + 1) % quad.length];
|
|
|
|
area += (p1.x * p2.y - p2.x * p1.y) / 2;
|
|
|
|
}
|
|
|
|
return Math.abs(area);
|
|
|
|
};
|
|
|
|
|
|
|
|
const [quads, metrics] = await Promise.all([
|
|
|
|
this._world.delegate.contentQuads(this),
|
|
|
|
this._world.delegate.layoutViewport(),
|
|
|
|
]);
|
|
|
|
if (!quads || !quads.length)
|
|
|
|
throw new Error('Node is either not visible or not an HTMLElement');
|
|
|
|
|
|
|
|
const filtered = quads.map(quad => intersectQuadWithViewport(quad)).filter(quad => computeQuadArea(quad) > 1);
|
|
|
|
if (!filtered.length)
|
|
|
|
throw new Error('Node is either not visible or not an HTMLElement');
|
|
|
|
// Return the middle point of the first quad.
|
|
|
|
const result = { x: 0, y: 0 };
|
|
|
|
for (const point of filtered[0]) {
|
|
|
|
result.x += point.x / 4;
|
|
|
|
result.y += point.y / 4;
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private async _viewportPointAndScroll(relativePoint: types.Point): Promise<{point: types.Point, scrollX: number, scrollY: number}> {
|
|
|
|
const [box, border] = await Promise.all([
|
|
|
|
this.boundingBox(),
|
2019-12-06 11:33:24 -08:00
|
|
|
this.evaluate((node: Node) => {
|
|
|
|
if (node.nodeType !== Node.ELEMENT_NODE)
|
|
|
|
return { x: 0, y: 0 };
|
|
|
|
const style = node.ownerDocument.defaultView.getComputedStyle(node as Element);
|
2019-12-05 09:54:50 -08:00
|
|
|
return { x: parseInt(style.borderLeftWidth, 10), y: parseInt(style.borderTopWidth, 10) };
|
|
|
|
}).catch(debugError),
|
|
|
|
]);
|
|
|
|
const point = { x: relativePoint.x, y: relativePoint.y };
|
|
|
|
if (box) {
|
|
|
|
point.x += box.x;
|
|
|
|
point.y += box.y;
|
|
|
|
}
|
|
|
|
if (border) {
|
|
|
|
// Make point relative to the padding box to align with offsetX/offsetY.
|
|
|
|
point.x += border.x;
|
|
|
|
point.y += border.y;
|
|
|
|
}
|
|
|
|
const metrics = await this._world.delegate.layoutViewport();
|
2019-12-08 17:17:49 -08:00
|
|
|
// Give 20 extra pixels to avoid any issues on viewport edge.
|
2019-12-05 09:54:50 -08:00
|
|
|
let scrollX = 0;
|
2019-12-08 17:17:49 -08:00
|
|
|
if (point.x < 20)
|
|
|
|
scrollX = point.x - 20;
|
|
|
|
if (point.x > metrics.width - 20)
|
|
|
|
scrollX = point.x - metrics.width + 20;
|
2019-12-05 09:54:50 -08:00
|
|
|
let scrollY = 0;
|
2019-12-08 17:17:49 -08:00
|
|
|
if (point.y < 20)
|
|
|
|
scrollY = point.y - 20;
|
|
|
|
if (point.y > metrics.height - 20)
|
|
|
|
scrollY = point.y - metrics.height + 20;
|
2019-12-05 09:54:50 -08:00
|
|
|
return { point, scrollX, scrollY };
|
|
|
|
}
|
|
|
|
|
2019-11-27 16:03:51 -08:00
|
|
|
async _performPointerAction(action: (point: types.Point) => Promise<void>, options?: input.PointerActionOptions): Promise<void> {
|
2019-12-05 09:54:50 -08:00
|
|
|
const point = await this._ensurePointerActionPoint(options ? options.relativePoint : undefined);
|
2019-11-27 16:02:31 -08:00
|
|
|
let restoreModifiers: input.Modifier[] | undefined;
|
|
|
|
if (options && options.modifiers)
|
2019-11-28 12:50:52 -08:00
|
|
|
restoreModifiers = await this._world.delegate.keyboard._ensureModifiers(options.modifiers);
|
2019-11-27 16:02:31 -08:00
|
|
|
await action(point);
|
|
|
|
if (restoreModifiers)
|
2019-11-28 12:50:52 -08:00
|
|
|
await this._world.delegate.keyboard._ensureModifiers(restoreModifiers);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
hover(options?: input.PointerActionOptions): Promise<void> {
|
2019-11-28 12:50:52 -08:00
|
|
|
return this._performPointerAction(point => this._world.delegate.mouse.move(point.x, point.y), options);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
click(options?: input.ClickOptions): Promise<void> {
|
2019-11-28 12:50:52 -08:00
|
|
|
return this._performPointerAction(point => this._world.delegate.mouse.click(point.x, point.y, options), options);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
dblclick(options?: input.MultiClickOptions): Promise<void> {
|
2019-11-28 12:50:52 -08:00
|
|
|
return this._performPointerAction(point => this._world.delegate.mouse.dblclick(point.x, point.y, options), options);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
tripleclick(options?: input.MultiClickOptions): Promise<void> {
|
2019-11-28 12:50:52 -08:00
|
|
|
return this._performPointerAction(point => this._world.delegate.mouse.tripleclick(point.x, point.y, options), options);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async select(...values: (string | ElementHandle | input.SelectOption)[]): Promise<string[]> {
|
|
|
|
const options = values.map(value => typeof value === 'object' ? value : { value });
|
|
|
|
for (const option of options) {
|
|
|
|
if (option instanceof ElementHandle)
|
|
|
|
continue;
|
|
|
|
if (option.value !== undefined)
|
|
|
|
assert(helper.isString(option.value), 'Values must be strings. Found value "' + option.value + '" of type "' + (typeof option.value) + '"');
|
|
|
|
if (option.label !== undefined)
|
|
|
|
assert(helper.isString(option.label), 'Labels must be strings. Found label "' + option.label + '" of type "' + (typeof option.label) + '"');
|
|
|
|
if (option.index !== undefined)
|
|
|
|
assert(helper.isNumber(option.index), 'Indices must be numbers. Found index "' + option.index + '" of type "' + (typeof option.index) + '"');
|
|
|
|
}
|
|
|
|
return this.evaluate(input.selectFunction, ...options);
|
|
|
|
}
|
|
|
|
|
|
|
|
async fill(value: string): Promise<void> {
|
|
|
|
assert(helper.isString(value), 'Value must be string. Found value "' + value + '" of type "' + (typeof value) + '"');
|
|
|
|
const error = await this.evaluate(input.fillFunction);
|
|
|
|
if (error)
|
|
|
|
throw new Error(error);
|
2019-11-28 12:50:52 -08:00
|
|
|
await this._world.delegate.keyboard.sendCharacters(value);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async setInputFiles(...files: (string|input.FilePayload)[]) {
|
2019-12-05 16:26:09 -08:00
|
|
|
const multiple = await this.evaluate((node: Node) => {
|
|
|
|
if (node.nodeType !== Node.ELEMENT_NODE || (node as Element).tagName !== 'INPUT')
|
|
|
|
throw new Error('Node is not an HTMLInputElement');
|
|
|
|
const input = node as HTMLInputElement;
|
|
|
|
return input.multiple;
|
|
|
|
});
|
2019-11-27 16:02:31 -08:00
|
|
|
assert(multiple || files.length <= 1, 'Non-multiple file input can only accept single file!');
|
2019-11-28 12:50:52 -08:00
|
|
|
await this._world.delegate.setInputFiles(this, await input.loadFiles(files));
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async focus() {
|
2019-12-05 16:26:09 -08:00
|
|
|
const errorMessage = await this.evaluate((element: Node) => {
|
|
|
|
if (!element['focus'])
|
|
|
|
return 'Node is not an HTML or SVG element.';
|
|
|
|
(element as HTMLElement|SVGElement).focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
if (errorMessage)
|
|
|
|
throw new Error(errorMessage);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async type(text: string, options: { delay: (number | undefined); } | undefined) {
|
|
|
|
await this.focus();
|
2019-11-28 12:50:52 -08:00
|
|
|
await this._world.delegate.keyboard.type(text, options);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
async press(key: string, options: { delay?: number; text?: string; } | undefined) {
|
|
|
|
await this.focus();
|
2019-11-28 12:50:52 -08:00
|
|
|
await this._world.delegate.keyboard.press(key, options);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-11-27 16:03:51 -08:00
|
|
|
async boundingBox(): Promise<types.Rect | null> {
|
2019-11-28 12:50:52 -08:00
|
|
|
return this._world.delegate.boundingBox(this);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-12-06 11:52:32 -08:00
|
|
|
async screenshot(options?: types.ElementScreenshotOptions): Promise<string | Buffer> {
|
2019-11-28 12:50:52 -08:00
|
|
|
return this._world.delegate.screenshot(this, options);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
private _scopedSelector(selector: string | types.Selector): string | ScopedSelector {
|
|
|
|
selector = types.clearSelector(selector);
|
|
|
|
if (helper.isString(selector))
|
|
|
|
selector = { selector };
|
|
|
|
return { scope: this, selector: selector.selector, visible: selector.visible };
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
$(selector: string | types.Selector): Promise<ElementHandle | null> {
|
|
|
|
return this._world.$(this._scopedSelector(selector));
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
$$(selector: string | types.Selector): Promise<ElementHandle<Element>[]> {
|
2019-12-04 13:11:10 -08:00
|
|
|
return this._world.$$(this._scopedSelector(selector));
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
$eval: types.$Eval<string | types.Selector> = (selector, pageFunction, ...args) => {
|
|
|
|
return this._world.$eval(this._scopedSelector(selector), pageFunction, ...args as any);
|
|
|
|
}
|
|
|
|
|
|
|
|
$$eval: types.$$Eval<string | types.Selector> = (selector, pageFunction, ...args) => {
|
|
|
|
return this._world.$$eval(this._scopedSelector(selector), pageFunction, ...args as any);
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
2019-12-05 16:26:09 -08:00
|
|
|
$x(expression: string): Promise<ElementHandle<Element>[]> {
|
2019-12-04 13:11:10 -08:00
|
|
|
return this._world.$$({ scope: this, selector: 'xpath=' + expression });
|
2019-11-27 16:02:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
isIntersectingViewport(): Promise<boolean> {
|
2019-12-05 16:26:09 -08:00
|
|
|
return this.evaluate(async (node: Node) => {
|
|
|
|
if (node.nodeType !== Node.ELEMENT_NODE)
|
|
|
|
throw new Error('Node is not of type HTMLElement');
|
|
|
|
const element = node as Element;
|
2019-11-27 16:02:31 -08:00
|
|
|
const visibleRatio = await new Promise(resolve => {
|
|
|
|
const observer = new IntersectionObserver(entries => {
|
|
|
|
resolve(entries[0].intersectionRatio);
|
|
|
|
observer.disconnect();
|
|
|
|
});
|
|
|
|
observer.observe(element);
|
|
|
|
// Firefox doesn't call IntersectionObserver callback unless
|
|
|
|
// there are rafs.
|
|
|
|
requestAnimationFrame(() => {});
|
|
|
|
});
|
|
|
|
return visibleRatio > 0;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2019-12-03 10:43:13 -08:00
|
|
|
|
|
|
|
function normalizeSelector(selector: string): string {
|
|
|
|
const eqIndex = selector.indexOf('=');
|
|
|
|
if (eqIndex !== -1 && selector.substring(0, eqIndex).trim().match(/^[a-zA-Z_0-9]+$/))
|
|
|
|
return selector;
|
|
|
|
if (selector.startsWith('//'))
|
|
|
|
return 'xpath=' + selector;
|
|
|
|
return 'css=' + selector;
|
|
|
|
}
|
|
|
|
|
2019-12-03 10:51:41 -08:00
|
|
|
export type Task = (domWorld: DOMWorld) => Promise<js.JSHandle>;
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
export function waitForFunctionTask(pageFunction: Function | string, options: types.WaitForFunctionOptions, ...args: any[]) {
|
2019-12-03 10:51:41 -08:00
|
|
|
const { polling = 'raf' } = options;
|
|
|
|
if (helper.isString(polling))
|
|
|
|
assert(polling === 'raf' || polling === 'mutation', 'Unknown polling option: ' + polling);
|
|
|
|
else if (helper.isNumber(polling))
|
|
|
|
assert(polling > 0, 'Cannot poll with non-positive interval: ' + polling);
|
|
|
|
else
|
|
|
|
throw new Error('Unknown polling options: ' + polling);
|
|
|
|
const predicateBody = helper.isString(pageFunction) ? 'return (' + pageFunction + ')' : 'return (' + pageFunction + ')(...args)';
|
|
|
|
|
2019-12-04 13:11:10 -08:00
|
|
|
return async (domWorld: DOMWorld) => domWorld.context.evaluateHandle((injected: Injected, predicateBody: string, polling: types.Polling, timeout: number, ...args) => {
|
2019-12-03 10:51:41 -08:00
|
|
|
const predicate = new Function('...args', predicateBody);
|
|
|
|
if (polling === 'raf')
|
|
|
|
return injected.pollRaf(predicate, timeout, ...args);
|
|
|
|
if (polling === 'mutation')
|
|
|
|
return injected.pollMutation(predicate, timeout, ...args);
|
|
|
|
return injected.pollInterval(polling, predicate, timeout, ...args);
|
|
|
|
}, await domWorld.injected(), predicateBody, polling, options.timeout, ...args);
|
|
|
|
}
|
|
|
|
|
2019-12-05 08:45:36 -08:00
|
|
|
export function waitForSelectorTask(selector: string | types.Selector, timeout: number): Task {
|
2019-12-04 13:11:10 -08:00
|
|
|
return async (domWorld: DOMWorld) => {
|
|
|
|
const resolved = await domWorld.resolveSelector(selector);
|
2019-12-05 16:26:09 -08:00
|
|
|
return domWorld.context.evaluateHandle((injected: Injected, selector: string, scope: Node | undefined, visible: boolean | undefined, timeout: number) => {
|
2019-12-04 13:11:10 -08:00
|
|
|
if (visible !== undefined)
|
|
|
|
return injected.pollRaf(predicate, timeout);
|
|
|
|
return injected.pollMutation(predicate, timeout);
|
|
|
|
|
|
|
|
function predicate(): Element | boolean {
|
|
|
|
const element = injected.querySelector(selector, scope || document);
|
|
|
|
if (!element)
|
|
|
|
return visible === false;
|
|
|
|
if (visible === undefined)
|
|
|
|
return element;
|
|
|
|
return injected.isVisible(element) === visible ? element : false;
|
2019-12-03 10:51:41 -08:00
|
|
|
}
|
2019-12-04 13:11:10 -08:00
|
|
|
}, await domWorld.injected(), resolved.selector, resolved.scope, resolved.visible, timeout);
|
|
|
|
};
|
2019-12-03 10:43:13 -08:00
|
|
|
}
|