2018-03-20 03:00:12 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-06-23 05:18:46 +00:00
|
|
|
import expect from 'expect';
|
|
|
|
import {
|
2020-05-07 10:54:55 +00:00
|
|
|
getTestState,
|
|
|
|
setupTestBrowserHooks,
|
|
|
|
setupTestPageAndContextHooks,
|
2020-06-23 05:18:46 +00:00
|
|
|
describeFailsFirefox,
|
|
|
|
itFailsFirefox,
|
2020-07-13 09:22:26 +00:00
|
|
|
} from './mocha-utils'; // eslint-disable-line import/extensions
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2020-07-13 09:22:26 +00:00
|
|
|
import utils from './utils.js';
|
2020-07-14 15:57:29 +00:00
|
|
|
import { ElementHandle } from '../lib/cjs/puppeteer/common/JSHandle.js';
|
2018-03-20 03:00:12 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('ElementHandle specs', function () {
|
2020-04-09 05:56:25 +00:00
|
|
|
setupTestBrowserHooks();
|
|
|
|
setupTestPageAndContextHooks();
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describeFailsFirefox('ElementHandle.boundingBox', function () {
|
|
|
|
it('should work', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2018-03-20 03:00:12 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.setViewport({ width: 500, height: 500 });
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/grid.html');
|
|
|
|
const elementHandle = await page.$('.box:nth-of-type(13)');
|
|
|
|
const box = await elementHandle.boundingBox();
|
2020-05-07 10:54:55 +00:00
|
|
|
expect(box).toEqual({ x: 100, y: 50, width: 50, height: 50 });
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should handle nested frames', async () => {
|
|
|
|
const { page, server, isChrome } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.setViewport({ width: 500, height: 500 });
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/frames/nested-frames.html');
|
|
|
|
const nestedFrame = page.frames()[1].childFrames()[1];
|
|
|
|
const elementHandle = await nestedFrame.$('div');
|
|
|
|
const box = await elementHandle.boundingBox();
|
2020-04-09 05:56:25 +00:00
|
|
|
if (isChrome)
|
2020-05-07 10:54:55 +00:00
|
|
|
expect(box).toEqual({ x: 28, y: 260, width: 264, height: 18 });
|
|
|
|
else expect(box).toEqual({ x: 28, y: 182, width: 254, height: 18 });
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should return null for invisible elements', async () => {
|
|
|
|
const { page } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.setContent('<div style="display:none">hi</div>');
|
|
|
|
const element = await page.$('div');
|
|
|
|
expect(await element.boundingBox()).toBe(null);
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should force a layout', async () => {
|
|
|
|
const { page } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.setViewport({ width: 500, height: 500 });
|
|
|
|
await page.setContent(
|
|
|
|
'<div style="width: 100px; height: 100px">hello</div>'
|
|
|
|
);
|
2018-03-20 03:00:12 +00:00
|
|
|
const elementHandle = await page.$('div');
|
2020-07-10 10:52:13 +00:00
|
|
|
await page.evaluate<(element: HTMLElement) => void>(
|
2020-05-07 10:54:55 +00:00
|
|
|
(element) => (element.style.height = '200px'),
|
|
|
|
elementHandle
|
|
|
|
);
|
2018-03-20 03:00:12 +00:00
|
|
|
const box = await elementHandle.boundingBox();
|
2020-05-07 10:54:55 +00:00
|
|
|
expect(box).toEqual({ x: 8, y: 8, width: 100, height: 200 });
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should work with SVG nodes', async () => {
|
|
|
|
const { page } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-06-27 01:03:00 +00:00
|
|
|
await page.setContent(`
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500">
|
|
|
|
<rect id="theRect" x="30" y="50" width="200" height="300"></rect>
|
|
|
|
</svg>
|
|
|
|
`);
|
|
|
|
const element = await page.$('#therect');
|
|
|
|
const pptrBoundingBox = await element.boundingBox();
|
2020-07-10 10:52:13 +00:00
|
|
|
const webBoundingBox = await page.evaluate((e: HTMLElement) => {
|
2018-06-27 01:03:00 +00:00
|
|
|
const rect = e.getBoundingClientRect();
|
2020-05-07 10:54:55 +00:00
|
|
|
return { x: rect.x, y: rect.y, width: rect.width, height: rect.height };
|
2018-06-27 01:03:00 +00:00
|
|
|
}, element);
|
|
|
|
expect(pptrBoundingBox).toEqual(webBoundingBox);
|
|
|
|
});
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describeFailsFirefox('ElementHandle.boxModel', function () {
|
|
|
|
it('should work', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-30 00:25:52 +00:00
|
|
|
await page.goto(server.PREFIX + '/resetcss.html');
|
2018-03-29 20:52:28 +00:00
|
|
|
|
2018-03-30 00:25:52 +00:00
|
|
|
// Step 1: Add Frame and position it absolutely.
|
|
|
|
await utils.attachFrame(page, 'frame1', server.PREFIX + '/resetcss.html');
|
|
|
|
await page.evaluate(() => {
|
2020-06-23 05:18:46 +00:00
|
|
|
const frame = document.querySelector<HTMLElement>('#frame1');
|
|
|
|
frame.style.position = 'absolute';
|
|
|
|
frame.style.left = '1px';
|
|
|
|
frame.style.top = '2px';
|
2018-03-30 00:25:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Step 2: Add div and position it absolutely inside frame.
|
|
|
|
const frame = page.frames()[1];
|
2020-05-07 10:54:55 +00:00
|
|
|
const divHandle = (
|
|
|
|
await frame.evaluateHandle(() => {
|
|
|
|
const div = document.createElement('div');
|
|
|
|
document.body.appendChild(div);
|
2020-06-23 05:18:46 +00:00
|
|
|
div.style.boxSizing = 'border-box';
|
|
|
|
div.style.position = 'absolute';
|
|
|
|
div.style.borderLeft = '1px solid black';
|
|
|
|
div.style.paddingLeft = '2px';
|
|
|
|
div.style.marginLeft = '3px';
|
|
|
|
div.style.left = '4px';
|
|
|
|
div.style.top = '5px';
|
|
|
|
div.style.width = '6px';
|
|
|
|
div.style.height = '7px';
|
2020-05-07 10:54:55 +00:00
|
|
|
return div;
|
|
|
|
})
|
|
|
|
).asElement();
|
2018-03-30 00:25:52 +00:00
|
|
|
|
|
|
|
// Step 3: query div's boxModel and assert box values.
|
|
|
|
const box = await divHandle.boxModel();
|
|
|
|
expect(box.width).toBe(6);
|
|
|
|
expect(box.height).toBe(7);
|
|
|
|
expect(box.margin[0]).toEqual({
|
|
|
|
x: 1 + 4, // frame.left + div.left
|
|
|
|
y: 2 + 5,
|
|
|
|
});
|
|
|
|
expect(box.border[0]).toEqual({
|
|
|
|
x: 1 + 4 + 3, // frame.left + div.left + div.margin-left
|
|
|
|
y: 2 + 5,
|
|
|
|
});
|
|
|
|
expect(box.padding[0]).toEqual({
|
|
|
|
x: 1 + 4 + 3 + 1, // frame.left + div.left + div.marginLeft + div.borderLeft
|
|
|
|
y: 2 + 5,
|
|
|
|
});
|
|
|
|
expect(box.content[0]).toEqual({
|
|
|
|
x: 1 + 4 + 3 + 1 + 2, // frame.left + div.left + div.marginLeft + div.borderLeft + dif.paddingLeft
|
|
|
|
y: 2 + 5,
|
|
|
|
});
|
2018-03-29 20:52:28 +00:00
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should return null for invisible elements', async () => {
|
|
|
|
const { page } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-29 20:52:28 +00:00
|
|
|
await page.setContent('<div style="display:none">hi</div>');
|
|
|
|
const element = await page.$('div');
|
|
|
|
expect(await element.boxModel()).toBe(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('ElementHandle.contentFrame', function () {
|
|
|
|
itFailsFirefox('should work', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.EMPTY_PAGE);
|
2019-02-09 03:24:40 +00:00
|
|
|
await utils.attachFrame(page, 'frame1', server.EMPTY_PAGE);
|
2018-03-20 03:00:12 +00:00
|
|
|
const elementHandle = await page.$('#frame1');
|
|
|
|
const frame = await elementHandle.contentFrame();
|
|
|
|
expect(frame).toBe(page.frames()[1]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('ElementHandle.click', function () {
|
|
|
|
it('should work', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/input/button.html');
|
|
|
|
const button = await page.$('button');
|
|
|
|
await button.click();
|
2020-06-23 05:18:46 +00:00
|
|
|
expect(await page.evaluate(() => globalThis.result)).toBe('Clicked');
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should work for Shadow DOM v1', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/shadow.html');
|
2020-07-01 11:44:08 +00:00
|
|
|
const buttonHandle = await page.evaluateHandle<ElementHandle>(
|
2020-06-23 05:18:46 +00:00
|
|
|
// @ts-expect-error button is expected to be in the page's scope.
|
|
|
|
() => button
|
|
|
|
);
|
2020-07-01 11:44:08 +00:00
|
|
|
await buttonHandle.click();
|
2020-06-23 05:18:46 +00:00
|
|
|
expect(
|
|
|
|
await page.evaluate(
|
|
|
|
// @ts-expect-error clicked is expected to be in the page's scope.
|
|
|
|
() => clicked
|
|
|
|
)
|
|
|
|
).toBe(true);
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should work for TextNodes', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/input/button.html');
|
2020-05-07 10:54:55 +00:00
|
|
|
const buttonTextNode = await page.evaluateHandle(
|
|
|
|
() => document.querySelector('button').firstChild
|
|
|
|
);
|
2018-03-20 03:00:12 +00:00
|
|
|
let error = null;
|
2020-06-23 05:18:46 +00:00
|
|
|
// @ts-expect-error
|
2020-05-07 10:54:55 +00:00
|
|
|
await buttonTextNode.click().catch((error_) => (error = error_));
|
2018-03-20 03:00:12 +00:00
|
|
|
expect(error.message).toBe('Node is not of type HTMLElement');
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should throw for detached nodes', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/input/button.html');
|
|
|
|
const button = await page.$('button');
|
2020-07-10 10:52:13 +00:00
|
|
|
await page.evaluate((button: HTMLElement) => button.remove(), button);
|
2018-03-20 03:00:12 +00:00
|
|
|
let error = null;
|
2020-05-07 10:54:55 +00:00
|
|
|
await button.click().catch((error_) => (error = error_));
|
2018-03-20 03:00:12 +00:00
|
|
|
expect(error.message).toBe('Node is detached from document');
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should throw for hidden nodes', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/input/button.html');
|
|
|
|
const button = await page.$('button');
|
2020-07-10 10:52:13 +00:00
|
|
|
await page.evaluate(
|
|
|
|
(button: HTMLElement) => (button.style.display = 'none'),
|
|
|
|
button
|
|
|
|
);
|
2020-05-07 10:54:55 +00:00
|
|
|
const error = await button.click().catch((error_) => error_);
|
|
|
|
expect(error.message).toBe(
|
|
|
|
'Node is either not visible or not an HTMLElement'
|
|
|
|
);
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should throw for recursively hidden nodes', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/input/button.html');
|
|
|
|
const button = await page.$('button');
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.evaluate(
|
2020-07-10 10:52:13 +00:00
|
|
|
(button: HTMLElement) => (button.parentElement.style.display = 'none'),
|
2020-05-07 10:54:55 +00:00
|
|
|
button
|
|
|
|
);
|
|
|
|
const error = await button.click().catch((error_) => error_);
|
|
|
|
expect(error.message).toBe(
|
|
|
|
'Node is either not visible or not an HTMLElement'
|
|
|
|
);
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
2020-06-12 13:55:51 +00:00
|
|
|
it('should throw for <br> elements', async () => {
|
2020-05-07 10:54:55 +00:00
|
|
|
const { page } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.setContent('hello<br>goodbye');
|
|
|
|
const br = await page.$('br');
|
2020-05-07 10:54:55 +00:00
|
|
|
const error = await br.click().catch((error_) => error_);
|
|
|
|
expect(error.message).toBe(
|
|
|
|
'Node is either not visible or not an HTMLElement'
|
|
|
|
);
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('ElementHandle.hover', function () {
|
|
|
|
itFailsFirefox('should work', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-03-20 03:00:12 +00:00
|
|
|
await page.goto(server.PREFIX + '/input/scrollable.html');
|
|
|
|
const button = await page.$('#button-6');
|
|
|
|
await button.hover();
|
2020-05-07 10:54:55 +00:00
|
|
|
expect(
|
|
|
|
await page.evaluate(() => document.querySelector('button:hover').id)
|
|
|
|
).toBe('button-6');
|
2018-03-20 03:00:12 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('ElementHandle.isIntersectingViewport', function () {
|
|
|
|
it('should work', async () => {
|
|
|
|
const { page, server } = getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2018-07-12 04:04:36 +00:00
|
|
|
await page.goto(server.PREFIX + '/offscreenbuttons.html');
|
|
|
|
for (let i = 0; i < 11; ++i) {
|
|
|
|
const button = await page.$('#btn' + i);
|
|
|
|
// All but last button are visible.
|
|
|
|
const visible = i < 10;
|
|
|
|
expect(await button.isIntersectingViewport()).toBe(visible);
|
|
|
|
}
|
2018-07-12 00:51:04 +00:00
|
|
|
});
|
|
|
|
});
|
2020-04-30 11:45:52 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('Custom queries', function () {
|
2020-04-30 11:45:52 +00:00
|
|
|
this.afterEach(() => {
|
2020-05-07 10:54:55 +00:00
|
|
|
const { puppeteer } = getTestState();
|
2020-04-30 11:45:52 +00:00
|
|
|
puppeteer.__experimental_clearQueryHandlers();
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should register and unregister', async () => {
|
|
|
|
const { page, puppeteer } = getTestState();
|
2020-04-30 11:45:52 +00:00
|
|
|
await page.setContent('<div id="not-foo"></div><div id="foo"></div>');
|
|
|
|
|
|
|
|
// Register.
|
2020-05-07 10:54:55 +00:00
|
|
|
puppeteer.__experimental_registerCustomQueryHandler(
|
|
|
|
'getById',
|
|
|
|
(element, selector) => document.querySelector(`[id="${selector}"]`)
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
const element = await page.$('getById/foo');
|
2020-07-10 10:52:13 +00:00
|
|
|
expect(
|
|
|
|
await page.evaluate<(element: HTMLElement) => string>(
|
|
|
|
(element) => element.id,
|
|
|
|
element
|
|
|
|
)
|
|
|
|
).toBe('foo');
|
2020-04-30 11:45:52 +00:00
|
|
|
|
|
|
|
// Unregister.
|
|
|
|
puppeteer.__experimental_unregisterCustomQueryHandler('getById');
|
|
|
|
try {
|
|
|
|
await page.$('getById/foo');
|
2020-06-23 05:18:46 +00:00
|
|
|
throw new Error('Custom query handler name not set - throw expected');
|
2020-04-30 11:45:52 +00:00
|
|
|
} catch (error) {
|
2020-05-07 10:54:55 +00:00
|
|
|
expect(error).toStrictEqual(
|
|
|
|
new Error(
|
|
|
|
'Query set to use "getById", but no query handler of that name was found'
|
|
|
|
)
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
it('should throw with invalid query names', () => {
|
|
|
|
try {
|
2020-05-07 10:54:55 +00:00
|
|
|
const { puppeteer } = getTestState();
|
|
|
|
puppeteer.__experimental_registerCustomQueryHandler(
|
|
|
|
'1/2/3',
|
2020-06-23 05:18:46 +00:00
|
|
|
// @ts-expect-error
|
|
|
|
() => {}
|
|
|
|
);
|
|
|
|
throw new Error(
|
|
|
|
'Custom query handler name was invalid - throw expected'
|
2020-05-07 10:54:55 +00:00
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
} catch (error) {
|
2020-05-07 10:54:55 +00:00
|
|
|
expect(error).toStrictEqual(
|
|
|
|
new Error('Custom query handler names may only contain [a-zA-Z]')
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
}
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should work for multiple elements', async () => {
|
|
|
|
const { page, puppeteer } = getTestState();
|
|
|
|
await page.setContent(
|
|
|
|
'<div id="not-foo"></div><div class="foo">Foo1</div><div class="foo baz">Foo2</div>'
|
|
|
|
);
|
|
|
|
puppeteer.__experimental_registerCustomQueryHandler(
|
|
|
|
'getByClass',
|
|
|
|
(element, selector) => document.querySelectorAll(`.${selector}`)
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
const elements = await page.$$('getByClass/foo');
|
2020-05-07 10:54:55 +00:00
|
|
|
const classNames = await Promise.all(
|
|
|
|
elements.map(
|
|
|
|
async (element) =>
|
2020-07-10 10:52:13 +00:00
|
|
|
await page.evaluate<(element: HTMLElement) => string>(
|
|
|
|
(element) => element.className,
|
|
|
|
element
|
|
|
|
)
|
2020-05-07 10:54:55 +00:00
|
|
|
)
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
|
|
|
|
expect(classNames).toStrictEqual(['foo', 'foo baz']);
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should eval correctly', async () => {
|
|
|
|
const { page, puppeteer } = getTestState();
|
|
|
|
await page.setContent(
|
|
|
|
'<div id="not-foo"></div><div class="foo">Foo1</div><div class="foo baz">Foo2</div>'
|
|
|
|
);
|
|
|
|
puppeteer.__experimental_registerCustomQueryHandler(
|
|
|
|
'getByClass',
|
|
|
|
(element, selector) => document.querySelectorAll(`.${selector}`)
|
|
|
|
);
|
|
|
|
const elements = await page.$$eval(
|
|
|
|
'getByClass/foo',
|
|
|
|
(divs) => divs.length
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
|
|
|
|
expect(elements).toBe(2);
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should wait correctly with waitForSelector', async () => {
|
|
|
|
const { page, puppeteer } = getTestState();
|
|
|
|
puppeteer.__experimental_registerCustomQueryHandler(
|
|
|
|
'getByClass',
|
|
|
|
(element, selector) => element.querySelector(`.${selector}`)
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
const waitFor = page.waitForSelector('getByClass/foo');
|
|
|
|
|
|
|
|
// Set the page content after the waitFor has been started.
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.setContent(
|
|
|
|
'<div id="not-foo"></div><div class="foo">Foo1</div>'
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
const element = await waitFor;
|
|
|
|
|
|
|
|
expect(element).toBeDefined();
|
|
|
|
});
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should wait correctly with waitFor', async () => {
|
|
|
|
const { page, puppeteer } = getTestState();
|
|
|
|
puppeteer.__experimental_registerCustomQueryHandler(
|
|
|
|
'getByClass',
|
|
|
|
(element, selector) => element.querySelector(`.${selector}`)
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
const waitFor = page.waitFor('getByClass/foo');
|
|
|
|
|
|
|
|
// Set the page content after the waitFor has been started.
|
2020-05-07 10:54:55 +00:00
|
|
|
await page.setContent(
|
|
|
|
'<div id="not-foo"></div><div class="foo">Foo1</div>'
|
|
|
|
);
|
2020-04-30 11:45:52 +00:00
|
|
|
const element = await waitFor;
|
|
|
|
|
|
|
|
expect(element).toBeDefined();
|
|
|
|
});
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|