2017-06-15 15:15:25 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2017 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.
|
|
|
|
*/
|
|
|
|
|
2017-08-02 19:06:47 +00:00
|
|
|
const fs = require('fs');
|
|
|
|
const rm = require('rimraf').sync;
|
|
|
|
const path = require('path');
|
2017-09-11 23:21:51 +00:00
|
|
|
const {helper} = require('../lib/helper');
|
2017-07-27 23:16:37 +00:00
|
|
|
if (process.env.COVERAGE)
|
|
|
|
helper.recordPublicAPICoverage();
|
2017-08-26 02:28:49 +00:00
|
|
|
console.log('Testing on Node', process.version);
|
2017-08-15 01:08:06 +00:00
|
|
|
const puppeteer = require('..');
|
2017-08-02 19:06:47 +00:00
|
|
|
const SimpleServer = require('./server/SimpleServer');
|
|
|
|
const GoldenUtils = require('./golden-utils');
|
|
|
|
|
2017-08-04 04:38:55 +00:00
|
|
|
const YELLOW_COLOR = '\x1b[33m';
|
|
|
|
const RESET_COLOR = '\x1b[0m';
|
|
|
|
|
2017-08-02 19:06:47 +00:00
|
|
|
const GOLDEN_DIR = path.join(__dirname, 'golden');
|
|
|
|
const OUTPUT_DIR = path.join(__dirname, 'output');
|
|
|
|
|
|
|
|
const PORT = 8907;
|
|
|
|
const PREFIX = 'http://localhost:' + PORT;
|
2017-08-21 20:34:26 +00:00
|
|
|
const CROSS_PROCESS_PREFIX = 'http://127.0.0.1:' + PORT;
|
2017-08-02 19:06:47 +00:00
|
|
|
const EMPTY_PAGE = PREFIX + '/empty.html';
|
|
|
|
const HTTPS_PORT = 8908;
|
|
|
|
const HTTPS_PREFIX = 'https://localhost:' + HTTPS_PORT;
|
2017-05-13 00:55:29 +00:00
|
|
|
|
2017-10-11 19:14:13 +00:00
|
|
|
const windows = /^win/.test(process.platform);
|
2017-07-20 02:35:09 +00:00
|
|
|
const headless = (process.env.HEADLESS || 'true').trim().toLowerCase() === 'true';
|
2017-08-01 01:47:56 +00:00
|
|
|
const slowMo = parseInt((process.env.SLOW_MO || '0').trim(), 10);
|
2017-08-04 04:38:55 +00:00
|
|
|
const executablePath = process.env.CHROME;
|
|
|
|
if (executablePath)
|
|
|
|
console.warn(`${YELLOW_COLOR}WARN: running tests with ${executablePath}${RESET_COLOR}`);
|
|
|
|
|
|
|
|
const defaultBrowserOptions = {
|
|
|
|
executablePath,
|
|
|
|
slowMo,
|
|
|
|
headless,
|
|
|
|
args: ['--no-sandbox']
|
|
|
|
};
|
2017-08-01 01:47:56 +00:00
|
|
|
|
|
|
|
if (process.env.DEBUG_TEST || slowMo)
|
2017-07-07 20:08:36 +00:00
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 1000 * 1000 * 1000;
|
|
|
|
else
|
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 10 * 1000;
|
2017-06-21 00:32:08 +00:00
|
|
|
|
2017-07-12 02:38:20 +00:00
|
|
|
// Make sure the `npm install` was run after the chromium roll.
|
|
|
|
{
|
|
|
|
const Downloader = require('../utils/ChromiumDownloader');
|
|
|
|
const chromiumRevision = require('../package.json').puppeteer.chromium_revision;
|
|
|
|
const revisionInfo = Downloader.revisionInfo(Downloader.currentPlatform(), chromiumRevision);
|
2017-08-21 20:34:10 +00:00
|
|
|
console.assert(revisionInfo.downloaded, `Chromium r${chromiumRevision} is not downloaded. Run 'npm install' and try to re-run tests.`);
|
2017-07-12 02:38:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-01 22:17:57 +00:00
|
|
|
let server;
|
|
|
|
let httpsServer;
|
|
|
|
beforeAll(SX(async function() {
|
|
|
|
const assetsPath = path.join(__dirname, 'assets');
|
|
|
|
server = await SimpleServer.create(assetsPath, PORT);
|
|
|
|
httpsServer = await SimpleServer.createHTTPS(assetsPath, HTTPS_PORT);
|
|
|
|
if (fs.existsSync(OUTPUT_DIR))
|
|
|
|
rm(OUTPUT_DIR);
|
|
|
|
}));
|
|
|
|
|
|
|
|
afterAll(SX(async function() {
|
|
|
|
await Promise.all([
|
|
|
|
server.stop(),
|
|
|
|
httpsServer.stop(),
|
|
|
|
]);
|
|
|
|
}));
|
|
|
|
|
2017-09-13 19:06:57 +00:00
|
|
|
describe('Puppeteer', function() {
|
|
|
|
describe('Puppeteer.launch', function() {
|
|
|
|
it('should support ignoreHTTPSErrors option', SX(async function() {
|
|
|
|
const options = Object.assign({ignoreHTTPSErrors: true}, defaultBrowserOptions);
|
|
|
|
const browser = await puppeteer.launch(options);
|
|
|
|
const page = await browser.newPage();
|
|
|
|
let error = null;
|
|
|
|
const response = await page.goto(HTTPS_PREFIX + '/empty.html').catch(e => error = e);
|
|
|
|
expect(error).toBe(null);
|
|
|
|
expect(response.ok).toBe(true);
|
|
|
|
browser.close();
|
|
|
|
}));
|
|
|
|
it('should reject all promises when browser is closed', SX(async function() {
|
|
|
|
const browser = await puppeteer.launch(defaultBrowserOptions);
|
|
|
|
const page = await browser.newPage();
|
|
|
|
let error = null;
|
|
|
|
const neverResolves = page.evaluate(() => new Promise(r => {})).catch(e => error = e);
|
|
|
|
browser.close();
|
|
|
|
await neverResolves;
|
|
|
|
expect(error.message).toContain('Protocol error');
|
|
|
|
}));
|
2017-10-10 18:10:26 +00:00
|
|
|
it('should reject if executable path is invalid', SX(async function() {
|
|
|
|
let waitError = null;
|
|
|
|
const options = Object.assign({}, defaultBrowserOptions, {executablePath: 'random-invalid-path'});
|
|
|
|
await puppeteer.launch(options).catch(e => waitError = e);
|
|
|
|
expect(waitError.message.startsWith('Failed to launch chrome! spawn random-invalid-path ENOENT')).toBe(true);
|
|
|
|
}));
|
2017-10-11 19:14:13 +00:00
|
|
|
// Windows has issues running Chromium using a custom user data dir. It hangs when closing the browser.
|
|
|
|
// @see https://github.com/GoogleChrome/puppeteer/issues/918
|
|
|
|
(windows ? xit : it)('userDataDir option', SX(async function() {
|
2017-09-13 19:06:57 +00:00
|
|
|
const userDataDir = fs.mkdtempSync(path.join(__dirname, 'test-user-data-dir'));
|
|
|
|
const options = Object.assign({userDataDir}, defaultBrowserOptions);
|
|
|
|
const browser = await puppeteer.launch(options);
|
|
|
|
expect(fs.readdirSync(userDataDir).length).toBeGreaterThan(0);
|
2017-09-14 04:27:14 +00:00
|
|
|
await browser.close();
|
2017-09-13 19:06:57 +00:00
|
|
|
expect(fs.readdirSync(userDataDir).length).toBeGreaterThan(0);
|
|
|
|
rm(userDataDir);
|
|
|
|
}));
|
2017-10-11 19:14:13 +00:00
|
|
|
// Windows has issues running Chromium using a custom user data dir. It hangs when closing the browser.
|
|
|
|
// @see https://github.com/GoogleChrome/puppeteer/issues/918
|
|
|
|
(windows ? xit : it)('userDataDir argument', SX(async function() {
|
2017-09-13 19:06:57 +00:00
|
|
|
const userDataDir = fs.mkdtempSync(path.join(__dirname, 'test-user-data-dir'));
|
|
|
|
const options = Object.assign({}, defaultBrowserOptions);
|
|
|
|
options.args = [`--user-data-dir=${userDataDir}`].concat(options.args);
|
|
|
|
const browser = await puppeteer.launch(options);
|
|
|
|
expect(fs.readdirSync(userDataDir).length).toBeGreaterThan(0);
|
2017-09-14 04:27:14 +00:00
|
|
|
await browser.close();
|
2017-09-13 19:06:57 +00:00
|
|
|
expect(fs.readdirSync(userDataDir).length).toBeGreaterThan(0);
|
|
|
|
rm(userDataDir);
|
|
|
|
}));
|
2017-10-06 00:08:35 +00:00
|
|
|
// Headless has issues shutting down gracefully
|
|
|
|
// @see https://crbug.com/771830
|
|
|
|
(headless ? xit : it)('userDataDir option should restore state', SX(async function() {
|
|
|
|
const userDataDir = fs.mkdtempSync(path.join(__dirname, 'test-user-data-dir'));
|
|
|
|
const options = Object.assign({userDataDir}, defaultBrowserOptions);
|
|
|
|
const browser = await puppeteer.launch(options);
|
|
|
|
const page = await browser.newPage();
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.evaluate(() => localStorage.hey = 'hello');
|
|
|
|
await browser.close();
|
|
|
|
|
|
|
|
const browser2 = await puppeteer.launch(options);
|
|
|
|
const page2 = await browser2.newPage();
|
|
|
|
await page2.goto(EMPTY_PAGE);
|
|
|
|
expect(await page2.evaluate(() => localStorage.hey)).toBe('hello');
|
|
|
|
await browser2.close();
|
|
|
|
rm(userDataDir);
|
|
|
|
}));
|
2017-09-13 19:06:57 +00:00
|
|
|
});
|
|
|
|
describe('Puppeteer.connect', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
const originalBrowser = await puppeteer.launch(defaultBrowserOptions);
|
|
|
|
const browser = await puppeteer.connect({
|
|
|
|
browserWSEndpoint: originalBrowser.wsEndpoint()
|
|
|
|
});
|
|
|
|
const page = await browser.newPage();
|
|
|
|
expect(await page.evaluate(() => 7 * 8)).toBe(56);
|
|
|
|
originalBrowser.close();
|
|
|
|
}));
|
|
|
|
});
|
2017-09-14 00:39:18 +00:00
|
|
|
describe('Puppeteer.executablePath', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
const executablePath = puppeteer.executablePath();
|
|
|
|
expect(fs.existsSync(executablePath)).toBe(true);
|
|
|
|
}));
|
|
|
|
});
|
2017-08-01 22:17:57 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Page', function() {
|
2017-08-04 04:38:55 +00:00
|
|
|
const iPhone = require('../DeviceDescriptors')['iPhone 6'];
|
|
|
|
const iPhoneLandscape = require('../DeviceDescriptors')['iPhone 6 landscape'];
|
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
let browser;
|
|
|
|
let page;
|
2017-05-12 23:36:37 +00:00
|
|
|
|
2017-07-07 06:45:18 +00:00
|
|
|
beforeAll(SX(async function() {
|
2017-08-15 01:08:06 +00:00
|
|
|
browser = await puppeteer.launch(defaultBrowserOptions);
|
2017-07-07 06:45:18 +00:00
|
|
|
}));
|
2017-05-12 23:36:37 +00:00
|
|
|
|
2017-07-07 15:55:30 +00:00
|
|
|
afterAll(SX(async function() {
|
2017-07-06 02:06:47 +00:00
|
|
|
browser.close();
|
2017-07-07 15:55:30 +00:00
|
|
|
}));
|
2017-05-13 00:55:29 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
beforeEach(SX(async function() {
|
|
|
|
page = await browser.newPage();
|
2017-07-07 15:14:25 +00:00
|
|
|
server.reset();
|
2017-07-10 22:09:52 +00:00
|
|
|
httpsServer.reset();
|
2017-07-13 17:07:24 +00:00
|
|
|
GoldenUtils.addMatchers(jasmine, GOLDEN_DIR, OUTPUT_DIR);
|
2017-06-21 20:51:06 +00:00
|
|
|
}));
|
2017-05-13 18:05:54 +00:00
|
|
|
|
2017-07-19 05:10:38 +00:00
|
|
|
afterEach(SX(async function() {
|
|
|
|
await page.close();
|
|
|
|
}));
|
2017-05-13 00:55:29 +00:00
|
|
|
|
2017-07-27 18:32:58 +00:00
|
|
|
describe('Browser.version', function() {
|
|
|
|
it('should return whether we are in headless', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const version = await browser.version();
|
2017-07-27 18:32:58 +00:00
|
|
|
expect(version.length).toBeGreaterThan(0);
|
|
|
|
expect(version.startsWith('Headless')).toBe(headless);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-09 23:14:00 +00:00
|
|
|
describe('Page.close', function() {
|
|
|
|
it('should reject all promises when page is closed', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const newPage = await browser.newPage();
|
|
|
|
const neverResolves = newPage.evaluate(() => new Promise(r => {}));
|
2017-08-09 23:14:00 +00:00
|
|
|
newPage.close();
|
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await neverResolves.catch(e => error = e);
|
2017-08-09 23:14:00 +00:00
|
|
|
expect(error.message).toContain('Protocol error');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-15 18:13:05 +00:00
|
|
|
describe('Page.Events.error', function() {
|
|
|
|
it('should throw when page crashes', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
page.on('error', err => error = err);
|
|
|
|
page.goto('chrome://crash').catch(e => {});
|
|
|
|
await waitForEvents(page, 'error');
|
|
|
|
expect(error.message).toBe('Page crashed!');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
describe('Page.evaluate', function() {
|
|
|
|
it('should work', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => 7 * 3);
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(result).toBe(21);
|
|
|
|
}));
|
|
|
|
it('should await promise', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => Promise.resolve(8 * 7));
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(result).toBe(56);
|
2017-06-21 14:45:13 +00:00
|
|
|
}));
|
2017-08-16 06:04:16 +00:00
|
|
|
it('should work from-inside an exposed function', SX(async function() {
|
2017-06-21 20:51:06 +00:00
|
|
|
// Setup inpage callback, which calls Page.evaluate
|
2017-08-16 06:04:16 +00:00
|
|
|
await page.exposeFunction('callController', async function(a, b) {
|
2017-06-21 20:51:06 +00:00
|
|
|
return await page.evaluate((a, b) => a * b, a, b);
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(async function() {
|
2017-06-21 20:51:06 +00:00
|
|
|
return await callController(9, 3);
|
|
|
|
});
|
|
|
|
expect(result).toBe(27);
|
|
|
|
}));
|
|
|
|
it('should reject promise with exception', SX(async function() {
|
2017-06-22 20:38:10 +00:00
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await page.evaluate(() => not.existing.object.property).catch(e => error = e);
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(error).toBeTruthy();
|
|
|
|
expect(error.message).toContain('not is not defined');
|
|
|
|
}));
|
2017-07-06 17:41:01 +00:00
|
|
|
it('should return complex objects', SX(async function() {
|
|
|
|
const object = {foo: 'bar!'};
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(a => a, object);
|
2017-07-06 17:41:01 +00:00
|
|
|
expect(result).not.toBe(object);
|
|
|
|
expect(result).toEqual(object);
|
|
|
|
}));
|
|
|
|
it('should return NaN', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => NaN);
|
2017-07-06 17:41:01 +00:00
|
|
|
expect(Object.is(result, NaN)).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should return -0', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => -0);
|
2017-07-06 17:41:01 +00:00
|
|
|
expect(Object.is(result, -0)).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should return Infinity', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => Infinity);
|
2017-07-06 17:41:01 +00:00
|
|
|
expect(Object.is(result, Infinity)).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should return -Infinity', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => -Infinity);
|
2017-07-06 17:41:01 +00:00
|
|
|
expect(Object.is(result, -Infinity)).toBe(true);
|
|
|
|
}));
|
2017-09-11 23:59:38 +00:00
|
|
|
it('should accept "undefined" as one of multiple parameters', SX(async function() {
|
|
|
|
const result = await page.evaluate((a, b) => Object.is(a, undefined) && Object.is(b, 'foo'), undefined, 'foo');
|
|
|
|
expect(result).toBe(true);
|
|
|
|
}));
|
2017-10-06 22:35:02 +00:00
|
|
|
it('should fail for window object', SX(async function() {
|
2017-10-09 19:30:05 +00:00
|
|
|
const result = await page.evaluate(() => window);
|
|
|
|
expect(result).toBe(undefined);
|
2017-07-18 07:03:52 +00:00
|
|
|
}));
|
2017-07-27 19:23:41 +00:00
|
|
|
it('should accept a string', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate('1 + 2');
|
2017-07-27 19:23:41 +00:00
|
|
|
expect(result).toBe(3);
|
|
|
|
}));
|
|
|
|
it('should accept a string with semi colons', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate('1 + 5;');
|
2017-07-27 19:23:41 +00:00
|
|
|
expect(result).toBe(6);
|
|
|
|
}));
|
|
|
|
it('should accept a string with comments', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate('2 + 5;\n// do some math!');
|
2017-07-27 19:23:41 +00:00
|
|
|
expect(result).toBe(7);
|
|
|
|
}));
|
2017-09-12 02:20:02 +00:00
|
|
|
it('should accept element handle as an argument', SX(async function() {
|
|
|
|
await page.setContent('<section>42</section>');
|
|
|
|
const element = await page.$('section');
|
|
|
|
const text = await page.evaluate(e => e.textContent, element);
|
|
|
|
expect(text).toBe('42');
|
|
|
|
}));
|
|
|
|
it('should throw if underlying element was disposed', SX(async function() {
|
|
|
|
await page.setContent('<section>39</section>');
|
|
|
|
const element = await page.$('section');
|
|
|
|
expect(element).toBeTruthy();
|
|
|
|
await element.dispose();
|
|
|
|
let error = null;
|
|
|
|
await page.evaluate(e => e.textContent, element).catch(e => error = e);
|
2017-10-06 22:35:02 +00:00
|
|
|
expect(error.message).toContain('JSHandle is disposed');
|
2017-09-12 02:20:02 +00:00
|
|
|
}));
|
|
|
|
it('should throw if elementHandles are from other frames', SX(async function() {
|
|
|
|
const FrameUtils = require('./frame-utils');
|
|
|
|
await FrameUtils.attachFrame(page, 'frame1', EMPTY_PAGE);
|
|
|
|
const bodyHandle = await page.frames()[1].$('body');
|
|
|
|
let error = null;
|
|
|
|
await page.evaluate(body => body.innerHTML, bodyHandle).catch(e => error = e);
|
|
|
|
expect(error).toBeTruthy();
|
2017-10-06 22:35:02 +00:00
|
|
|
expect(error.message).toContain('JSHandles can be evaluated only in the context they were created');
|
|
|
|
}));
|
|
|
|
it('should accept object handle as an argument', SX(async function() {
|
|
|
|
const navigatorHandle = await page.evaluateHandle(() => navigator);
|
|
|
|
const text = await page.evaluate(e => e.userAgent, navigatorHandle);
|
|
|
|
expect(text).toContain('Mozilla');
|
|
|
|
}));
|
|
|
|
it('should accept object handle to primitive types', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => 5);
|
|
|
|
const isFive = await page.evaluate(e => Object.is(e, 5), aHandle);
|
|
|
|
expect(isFive).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Page.evaluateHandle', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
const windowHandle = await page.evaluateHandle(() => window);
|
|
|
|
expect(windowHandle).toBeTruthy();
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-10-11 21:41:20 +00:00
|
|
|
describe('ExecutionContext.queryObjects', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
// Instantiate an object
|
|
|
|
await page.evaluate(() => window.set = new Set(['hello', 'world']));
|
|
|
|
const prototypeHandle = await page.evaluateHandle(() => Set.prototype);
|
|
|
|
const objectsHandle = await page.queryObjects(prototypeHandle);
|
|
|
|
const count = await page.evaluate(objects => objects.length, objectsHandle);
|
|
|
|
expect(count).toBe(1);
|
|
|
|
const values = await page.evaluate(objects => Array.from(objects[0].values()), objectsHandle);
|
|
|
|
expect(values).toEqual(['hello', 'world']);
|
|
|
|
}));
|
|
|
|
it('should fail for disposed handles', SX(async function() {
|
|
|
|
const prototypeHandle = await page.evaluateHandle(() => HTMLBodyElement.prototype);
|
|
|
|
await prototypeHandle.dispose();
|
|
|
|
let error = null;
|
|
|
|
await page.queryObjects(prototypeHandle).catch(e => error = e);
|
|
|
|
expect(error.message).toBe('Prototype JSHandle is disposed!');
|
|
|
|
}));
|
|
|
|
it('should fail primitive values as prototypes', SX(async function() {
|
|
|
|
const prototypeHandle = await page.evaluateHandle(() => 42);
|
|
|
|
let error = null;
|
|
|
|
await page.queryObjects(prototypeHandle).catch(e => error = e);
|
|
|
|
expect(error.message).toBe('Prototype JSHandle must not be referencing primitive value');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-10-06 22:35:02 +00:00
|
|
|
describe('JSHandle.getProperty', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => ({
|
|
|
|
one: 1,
|
|
|
|
two: 2,
|
|
|
|
three: 3
|
|
|
|
}));
|
|
|
|
const twoHandle = await aHandle.getProperty('two');
|
|
|
|
expect(await twoHandle.jsonValue()).toEqual(2);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('JSHandle.jsonValue', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => ({foo: 'bar'}));
|
|
|
|
const json = await aHandle.jsonValue();
|
|
|
|
expect(json).toEqual({foo: 'bar'});
|
|
|
|
}));
|
|
|
|
it('should work with dates', SX(async function() {
|
|
|
|
const dateHandle = await page.evaluateHandle(() => new Date('2017-09-26T00:00:00.000Z'));
|
|
|
|
const json = await dateHandle.jsonValue();
|
|
|
|
expect(json).toBe('2017-09-26T00:00:00.000Z');
|
|
|
|
}));
|
|
|
|
it('should throw for circular objects', SX(async function() {
|
|
|
|
const windowHandle = await page.evaluateHandle('window');
|
|
|
|
let error = null;
|
|
|
|
await windowHandle.jsonValue().catch(e => error = e);
|
|
|
|
expect(error.message).toContain('Converting circular structure to JSON');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('JSHandle.getProperties', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => ({
|
|
|
|
foo: 'bar'
|
|
|
|
}));
|
|
|
|
const properties = await aHandle.getProperties();
|
|
|
|
const foo = properties.get('foo');
|
|
|
|
expect(foo).toBeTruthy();
|
|
|
|
expect(await foo.jsonValue()).toBe('bar');
|
|
|
|
}));
|
|
|
|
it('should return even non-own properties', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => {
|
|
|
|
class A {
|
|
|
|
constructor() {
|
|
|
|
this.a = '1';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class B extends A {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
this.b = '2';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return new B();
|
|
|
|
});
|
|
|
|
const properties = await aHandle.getProperties();
|
|
|
|
expect(await properties.get('a').jsonValue()).toBe('1');
|
|
|
|
expect(await properties.get('b').jsonValue()).toBe('2');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('JSHandle.asElement', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => document.body);
|
|
|
|
const element = aHandle.asElement();
|
|
|
|
expect(element).toBeTruthy();
|
|
|
|
}));
|
|
|
|
it('should return null for non-elements', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => 2);
|
|
|
|
const element = aHandle.asElement();
|
|
|
|
expect(element).toBeFalsy();
|
|
|
|
}));
|
|
|
|
it('should return ElementHandle for TextNodes', SX(async function() {
|
|
|
|
await page.setContent('<div>ee!</div>');
|
|
|
|
const aHandle = await page.evaluateHandle(() => document.querySelector('div').firstChild);
|
|
|
|
const element = aHandle.asElement();
|
|
|
|
expect(element).toBeTruthy();
|
|
|
|
expect(await page.evaluate(e => e.nodeType === HTMLElement.TEXT_NODE, element));
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('JSHandle.toString', function() {
|
|
|
|
it('should work for primitives', SX(async function() {
|
2017-10-10 17:54:20 +00:00
|
|
|
const numberHandle = await page.evaluateHandle(() => 2);
|
|
|
|
expect(numberHandle.toString()).toBe('JSHandle:2');
|
|
|
|
const stringHandle = await page.evaluateHandle(() => 'a');
|
|
|
|
expect(stringHandle.toString()).toBe('JSHandle:a');
|
2017-10-06 22:35:02 +00:00
|
|
|
}));
|
|
|
|
it('should work for complicated objects', SX(async function() {
|
|
|
|
const aHandle = await page.evaluateHandle(() => window);
|
|
|
|
expect(aHandle.toString()).toBe('JSHandle@object');
|
2017-09-12 02:20:02 +00:00
|
|
|
}));
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
2017-06-14 15:21:56 +00:00
|
|
|
|
2017-10-06 22:35:02 +00:00
|
|
|
describe('Frame.context', function() {
|
|
|
|
const FrameUtils = require('./frame-utils');
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await FrameUtils.attachFrame(page, 'frame1', EMPTY_PAGE);
|
|
|
|
expect(page.frames().length).toBe(2);
|
|
|
|
const [frame1, frame2] = page.frames();
|
|
|
|
expect(frame1.executionContext()).toBeTruthy();
|
|
|
|
expect(frame2.executionContext()).toBeTruthy();
|
|
|
|
expect(frame1.executionContext() !== frame2.executionContext()).toBeTruthy();
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
frame1.executionContext().evaluate(() => window.a = 1),
|
|
|
|
frame2.executionContext().evaluate(() => window.a = 2)
|
|
|
|
]);
|
|
|
|
const [a1, a2] = await Promise.all([
|
|
|
|
frame1.executionContext().evaluate(() => window.a),
|
|
|
|
frame2.executionContext().evaluate(() => window.a)
|
|
|
|
]);
|
|
|
|
expect(a1).toBe(1);
|
|
|
|
expect(a2).toBe(2);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-06-27 19:40:46 +00:00
|
|
|
describe('Frame.evaluate', function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const FrameUtils = require('./frame-utils');
|
2017-06-27 19:40:46 +00:00
|
|
|
it('should have different execution contexts', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-27 19:40:46 +00:00
|
|
|
await FrameUtils.attachFrame(page, 'frame1', EMPTY_PAGE);
|
|
|
|
expect(page.frames().length).toBe(2);
|
2017-08-21 23:39:04 +00:00
|
|
|
const frame1 = page.frames()[0];
|
|
|
|
const frame2 = page.frames()[1];
|
2017-06-27 19:40:46 +00:00
|
|
|
await frame1.evaluate(() => window.FOO = 'foo');
|
|
|
|
await frame2.evaluate(() => window.FOO = 'bar');
|
|
|
|
expect(await frame1.evaluate(() => window.FOO)).toBe('foo');
|
|
|
|
expect(await frame2.evaluate(() => window.FOO)).toBe('bar');
|
|
|
|
}));
|
2017-07-25 21:30:04 +00:00
|
|
|
it('should execute after cross-site navigation', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const mainFrame = page.mainFrame();
|
2017-07-25 21:30:04 +00:00
|
|
|
expect(await mainFrame.evaluate(() => window.location.href)).toContain('localhost');
|
2017-08-21 20:34:26 +00:00
|
|
|
await page.goto(CROSS_PROCESS_PREFIX + '/empty.html');
|
2017-07-25 21:30:04 +00:00
|
|
|
expect(await mainFrame.evaluate(() => window.location.href)).toContain('127');
|
|
|
|
}));
|
2017-06-27 19:40:46 +00:00
|
|
|
});
|
|
|
|
|
2017-07-27 22:17:43 +00:00
|
|
|
describe('Frame.waitForFunction', function() {
|
|
|
|
it('should accept a string', SX(async function() {
|
|
|
|
const watchdog = page.waitForFunction('window.__FOO === 1');
|
|
|
|
await page.evaluate(() => window.__FOO = 1);
|
|
|
|
await watchdog;
|
|
|
|
}));
|
|
|
|
it('should poll on interval', SX(async function() {
|
|
|
|
let success = false;
|
|
|
|
const startTime = Date.now();
|
|
|
|
const polling = 100;
|
|
|
|
const watchdog = page.waitForFunction(() => window.__FOO === 'hit', {polling})
|
|
|
|
.then(() => success = true);
|
|
|
|
await page.evaluate(() => window.__FOO = 'hit');
|
|
|
|
expect(success).toBe(false);
|
|
|
|
await page.evaluate(() => document.body.appendChild(document.createElement('div')));
|
|
|
|
await watchdog;
|
|
|
|
expect(Date.now() - startTime).not.toBeLessThan(polling / 2);
|
|
|
|
}));
|
|
|
|
it('should poll on mutation', SX(async function() {
|
|
|
|
let success = false;
|
|
|
|
const watchdog = page.waitForFunction(() => window.__FOO === 'hit', {polling: 'mutation'})
|
|
|
|
.then(() => success = true);
|
|
|
|
await page.evaluate(() => window.__FOO = 'hit');
|
|
|
|
expect(success).toBe(false);
|
|
|
|
await page.evaluate(() => document.body.appendChild(document.createElement('div')));
|
|
|
|
await watchdog;
|
|
|
|
}));
|
|
|
|
it('should poll on raf', SX(async function() {
|
|
|
|
const watchdog = page.waitForFunction(() => window.__FOO === 'hit', {polling: 'raf'});
|
|
|
|
await page.evaluate(() => window.__FOO = 'hit');
|
|
|
|
await watchdog;
|
|
|
|
}));
|
|
|
|
it('should throw on bad polling value', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
await page.waitForFunction(() => !!document.body, {polling: 'unknown'});
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
expect(error).toBeTruthy();
|
|
|
|
expect(error.message).toContain('polling');
|
|
|
|
}));
|
|
|
|
it('should throw negative polling interval', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
await page.waitForFunction(() => !!document.body, {polling: -10});
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
expect(error).toBeTruthy();
|
|
|
|
expect(error.message).toContain('Cannot poll with non-positive interval');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-07-21 19:41:49 +00:00
|
|
|
describe('Frame.waitForSelector', function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const FrameUtils = require('./frame-utils');
|
|
|
|
const addElement = tag => document.body.appendChild(document.createElement(tag));
|
2017-07-07 22:39:02 +00:00
|
|
|
|
|
|
|
it('should immediately resolve promise if node exists', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const frame = page.mainFrame();
|
2017-07-07 22:39:02 +00:00
|
|
|
let added = false;
|
2017-07-21 19:41:49 +00:00
|
|
|
await frame.waitForSelector('*').then(() => added = true);
|
2017-07-07 22:39:02 +00:00
|
|
|
expect(added).toBe(true);
|
|
|
|
|
|
|
|
added = false;
|
|
|
|
await frame.evaluate(addElement, 'div');
|
2017-07-21 19:41:49 +00:00
|
|
|
await frame.waitForSelector('div').then(() => added = true);
|
2017-07-07 22:39:02 +00:00
|
|
|
expect(added).toBe(true);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should resolve promise when node is added', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const frame = page.mainFrame();
|
2017-07-07 22:39:02 +00:00
|
|
|
let added = false;
|
2017-08-21 23:39:04 +00:00
|
|
|
const watchdog = frame.waitForSelector('div').then(() => added = true);
|
2017-07-07 22:39:02 +00:00
|
|
|
// run nop function..
|
|
|
|
await frame.evaluate(() => 42);
|
2017-07-21 19:41:49 +00:00
|
|
|
// .. to be sure that waitForSelector promise is not resolved yet.
|
2017-07-07 22:39:02 +00:00
|
|
|
expect(added).toBe(false);
|
|
|
|
await frame.evaluate(addElement, 'br');
|
|
|
|
expect(added).toBe(false);
|
|
|
|
await frame.evaluate(addElement, 'div');
|
2017-08-18 02:48:25 +00:00
|
|
|
await watchdog;
|
2017-07-07 22:39:02 +00:00
|
|
|
expect(added).toBe(true);
|
|
|
|
}));
|
|
|
|
|
2017-07-18 09:10:02 +00:00
|
|
|
it('should work when node is added through innerHTML', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const watchdog = page.waitForSelector('h3 div');
|
2017-08-03 20:35:31 +00:00
|
|
|
await page.evaluate(addElement, 'span');
|
|
|
|
await page.evaluate(() => document.querySelector('span').innerHTML = '<h3><div></div></h3>');
|
|
|
|
await watchdog;
|
2017-07-18 09:10:02 +00:00
|
|
|
}));
|
|
|
|
|
2017-07-21 19:41:49 +00:00
|
|
|
it('Page.waitForSelector is shortcut for main frame', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-07-07 22:39:02 +00:00
|
|
|
await FrameUtils.attachFrame(page, 'frame1', EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const otherFrame = page.frames()[1];
|
2017-07-07 22:39:02 +00:00
|
|
|
let added = false;
|
2017-07-21 19:41:49 +00:00
|
|
|
page.waitForSelector('div').then(() => added = true);
|
2017-07-07 22:39:02 +00:00
|
|
|
await otherFrame.evaluate(addElement, 'div');
|
|
|
|
expect(added).toBe(false);
|
|
|
|
await page.evaluate(addElement, 'div');
|
|
|
|
expect(added).toBe(true);
|
|
|
|
}));
|
2017-07-14 22:55:38 +00:00
|
|
|
|
|
|
|
it('should run in specified frame', SX(async function() {
|
|
|
|
await FrameUtils.attachFrame(page, 'frame1', EMPTY_PAGE);
|
|
|
|
await FrameUtils.attachFrame(page, 'frame2', EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const frame1 = page.frames()[1];
|
|
|
|
const frame2 = page.frames()[2];
|
2017-07-14 22:55:38 +00:00
|
|
|
let added = false;
|
2017-07-21 19:41:49 +00:00
|
|
|
frame2.waitForSelector('div').then(() => added = true);
|
2017-07-14 22:55:38 +00:00
|
|
|
expect(added).toBe(false);
|
|
|
|
await frame1.evaluate(addElement, 'div');
|
|
|
|
expect(added).toBe(false);
|
|
|
|
await frame2.evaluate(addElement, 'div');
|
|
|
|
expect(added).toBe(true);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should throw if evaluation failed', SX(async function() {
|
2017-07-25 07:00:25 +00:00
|
|
|
await page.evaluateOnNewDocument(function() {
|
2017-07-14 22:55:38 +00:00
|
|
|
document.querySelector = null;
|
|
|
|
});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-09-13 19:06:57 +00:00
|
|
|
let error = null;
|
|
|
|
await page.waitForSelector('*').catch(e => error = e);
|
|
|
|
expect(error.message).toContain('document.querySelector is not a function');
|
2017-07-14 22:55:38 +00:00
|
|
|
}));
|
2017-07-20 02:04:51 +00:00
|
|
|
it('should throw when frame is detached', SX(async function() {
|
|
|
|
await FrameUtils.attachFrame(page, 'frame1', EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const frame = page.frames()[1];
|
2017-07-20 02:04:51 +00:00
|
|
|
let waitError = null;
|
2017-08-21 23:39:04 +00:00
|
|
|
const waitPromise = frame.waitForSelector('.box').catch(e => waitError = e);
|
2017-07-20 02:04:51 +00:00
|
|
|
await FrameUtils.detachFrame(page, 'frame1');
|
|
|
|
await waitPromise;
|
|
|
|
expect(waitError).toBeTruthy();
|
|
|
|
expect(waitError.message).toContain('waitForSelector failed: frame got detached.');
|
|
|
|
}));
|
2017-08-21 20:34:26 +00:00
|
|
|
it('should survive cross-process navigation', SX(async function() {
|
2017-07-20 02:04:51 +00:00
|
|
|
let boxFound = false;
|
2017-08-21 23:39:04 +00:00
|
|
|
const waitForSelector = page.waitForSelector('.box').then(() => boxFound = true);
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-07-20 02:04:51 +00:00
|
|
|
expect(boxFound).toBe(false);
|
|
|
|
await page.reload();
|
|
|
|
expect(boxFound).toBe(false);
|
2017-08-21 20:34:26 +00:00
|
|
|
await page.goto(CROSS_PROCESS_PREFIX + '/grid.html');
|
2017-07-21 19:41:49 +00:00
|
|
|
await waitForSelector;
|
2017-07-20 02:04:51 +00:00
|
|
|
expect(boxFound).toBe(true);
|
|
|
|
}));
|
2017-07-21 07:58:38 +00:00
|
|
|
it('should wait for visible', SX(async function() {
|
|
|
|
let divFound = false;
|
2017-08-21 23:39:04 +00:00
|
|
|
const waitForSelector = page.waitForSelector('div', {visible: true}).then(() => divFound = true);
|
2017-10-13 16:11:11 +00:00
|
|
|
await page.setContent(`<div style='display: none; visibility: hidden;'></div>`);
|
2017-07-21 07:58:38 +00:00
|
|
|
expect(divFound).toBe(false);
|
|
|
|
await page.evaluate(() => document.querySelector('div').style.removeProperty('display'));
|
|
|
|
expect(divFound).toBe(false);
|
|
|
|
await page.evaluate(() => document.querySelector('div').style.removeProperty('visibility'));
|
2017-07-21 19:41:49 +00:00
|
|
|
expect(await waitForSelector).toBe(true);
|
2017-10-13 16:11:11 +00:00
|
|
|
expect(divFound).toBe(true);
|
|
|
|
}));
|
|
|
|
it('hidden should wait for visibility: hidden', SX(async function() {
|
|
|
|
let divHidden = false;
|
|
|
|
await page.setContent(`<div style='display: block;'></div>`);
|
|
|
|
const waitForSelector = page.waitForSelector('div', {hidden: true}).then(() => divHidden = true);
|
|
|
|
await page.evaluate(() => document.querySelector('div').style.setProperty('visibility', 'hidden'));
|
|
|
|
expect(await waitForSelector).toBe(true);
|
|
|
|
expect(divHidden).toBe(true);
|
|
|
|
}));
|
|
|
|
it('hidden should wait for display: none', SX(async function() {
|
|
|
|
let divHidden = false;
|
|
|
|
await page.setContent(`<div style='display: block;'></div>`);
|
|
|
|
const waitForSelector = page.waitForSelector('div', {hidden: true}).then(() => divHidden = true);
|
|
|
|
await page.evaluate(() => document.querySelector('div').style.setProperty('display', 'none'));
|
|
|
|
expect(await waitForSelector).toBe(true);
|
|
|
|
expect(divHidden).toBe(true);
|
|
|
|
}));
|
|
|
|
it('hidden should wait for removal', SX(async function() {
|
|
|
|
await page.setContent(`<div></div>`);
|
|
|
|
let divRemoved = false;
|
|
|
|
const waitForSelector = page.waitForSelector('div', {hidden: true}).then(() => divRemoved = true);
|
|
|
|
expect(divRemoved).toBe(false);
|
|
|
|
await page.evaluate(() => document.querySelector('div').remove());
|
|
|
|
expect(await waitForSelector).toBe(true);
|
|
|
|
expect(divRemoved).toBe(true);
|
2017-07-21 07:58:38 +00:00
|
|
|
}));
|
2017-07-21 18:46:57 +00:00
|
|
|
it('should respect timeout', SX(async function() {
|
|
|
|
let error = null;
|
2017-07-21 19:41:49 +00:00
|
|
|
await page.waitForSelector('div', {timeout: 10}).catch(e => error = e);
|
2017-07-21 18:46:57 +00:00
|
|
|
expect(error).toBeTruthy();
|
2017-07-24 16:58:51 +00:00
|
|
|
expect(error.message).toContain('waiting failed: timeout');
|
2017-07-21 19:41:49 +00:00
|
|
|
}));
|
2017-08-23 20:25:40 +00:00
|
|
|
|
|
|
|
it('should respond to node attribute mutation', SX(async function() {
|
|
|
|
let divFound = false;
|
|
|
|
const waitForSelector = page.waitForSelector('.zombo').then(() => divFound = true);
|
|
|
|
await page.setContent(`<div class='notZombo'></div>`);
|
|
|
|
expect(divFound).toBe(false);
|
|
|
|
await page.evaluate(() => document.querySelector('div').className = 'zombo');
|
|
|
|
expect(await waitForSelector).toBe(true);
|
|
|
|
}));
|
2017-07-21 19:41:49 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Page.waitFor', function() {
|
|
|
|
it('should wait for selector', SX(async function() {
|
|
|
|
let found = false;
|
2017-08-21 23:39:04 +00:00
|
|
|
const waitFor = page.waitFor('div').then(() => found = true);
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-07-21 19:41:49 +00:00
|
|
|
expect(found).toBe(false);
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-07-21 19:41:49 +00:00
|
|
|
await waitFor;
|
|
|
|
expect(found).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should timeout', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const startTime = Date.now();
|
2017-07-21 19:41:49 +00:00
|
|
|
const timeout = 42;
|
|
|
|
await page.waitFor(timeout);
|
2017-07-21 21:17:21 +00:00
|
|
|
expect(Date.now() - startTime).not.toBeLessThan(timeout / 2);
|
2017-07-21 19:41:49 +00:00
|
|
|
}));
|
2017-07-28 00:09:28 +00:00
|
|
|
it('should wait for predicate', SX(async function() {
|
|
|
|
const watchdog = page.waitFor(() => window.innerWidth < 100);
|
|
|
|
page.setViewport({width: 10, height: 10});
|
|
|
|
await watchdog;
|
|
|
|
}));
|
2017-07-21 19:41:49 +00:00
|
|
|
it('should throw when unknown type', SX(async function() {
|
2017-09-13 19:06:57 +00:00
|
|
|
let error = null;
|
|
|
|
await page.waitFor({foo: 'bar'}).catch(e => error = e);
|
|
|
|
expect(error.message).toContain('Unsupported target type');
|
2017-07-21 18:46:57 +00:00
|
|
|
}));
|
2017-09-15 21:28:15 +00:00
|
|
|
it('should wait for predicate with arguments', SX(async function() {
|
|
|
|
await page.waitFor((arg1, arg2) => arg1 !== arg2, {}, 1, 2);
|
|
|
|
}));
|
2017-07-07 22:39:02 +00:00
|
|
|
});
|
|
|
|
|
2017-07-18 03:38:11 +00:00
|
|
|
describe('Page.Events.Console', function() {
|
2017-07-17 08:57:37 +00:00
|
|
|
it('should work', SX(async function() {
|
2017-09-29 18:27:22 +00:00
|
|
|
let message = null;
|
|
|
|
page.once('console', m => message = m);
|
2017-08-02 20:24:34 +00:00
|
|
|
await Promise.all([
|
2017-09-29 18:27:22 +00:00
|
|
|
page.evaluate(() => console.log('hello', 5, {foo: 'bar'})),
|
2017-08-02 20:24:34 +00:00
|
|
|
waitForEvents(page, 'console')
|
|
|
|
]);
|
2017-10-10 00:01:01 +00:00
|
|
|
expect(message.text).toEqual('hello 5 JSHandle@object');
|
2017-09-29 18:27:22 +00:00
|
|
|
expect(message.type).toEqual('log');
|
2017-10-10 00:01:01 +00:00
|
|
|
expect(await message.args[0].jsonValue()).toEqual('hello');
|
|
|
|
expect(await message.args[1].jsonValue()).toEqual(5);
|
|
|
|
expect(await message.args[2].jsonValue()).toEqual({foo: 'bar'});
|
2017-07-17 08:57:37 +00:00
|
|
|
}));
|
|
|
|
it('should work for different console API calls', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const messages = [];
|
2017-07-18 03:38:11 +00:00
|
|
|
page.on('console', msg => messages.push(msg));
|
2017-08-02 20:24:34 +00:00
|
|
|
await Promise.all([
|
|
|
|
page.evaluate(() => {
|
|
|
|
// A pair of time/timeEnd generates only one Console API call.
|
|
|
|
console.time('calling console.time');
|
|
|
|
console.timeEnd('calling console.time');
|
|
|
|
console.trace('calling console.trace');
|
|
|
|
console.dir('calling console.dir');
|
|
|
|
console.warn('calling console.warn');
|
|
|
|
console.error('calling console.error');
|
2017-08-16 00:35:59 +00:00
|
|
|
console.log(Promise.resolve('should not wait until resolved!'));
|
2017-08-02 20:24:34 +00:00
|
|
|
}),
|
2017-09-29 18:27:22 +00:00
|
|
|
// Wait for 5 events to hit - console.time is not reported
|
2017-08-02 20:24:34 +00:00
|
|
|
waitForEvents(page, 'console', 5)
|
|
|
|
]);
|
2017-09-29 18:27:22 +00:00
|
|
|
expect(messages.map(msg => msg.type)).toEqual([
|
|
|
|
'timeEnd', 'trace', 'dir', 'warning', 'error', 'log'
|
|
|
|
]);
|
|
|
|
expect(messages[0].text).toContain('calling console.time');
|
|
|
|
expect(messages.slice(1).map(msg => msg.text)).toEqual([
|
2017-07-17 08:57:37 +00:00
|
|
|
'calling console.trace',
|
|
|
|
'calling console.dir',
|
|
|
|
'calling console.warn',
|
|
|
|
'calling console.error',
|
2017-10-10 00:01:01 +00:00
|
|
|
'JSHandle@promise',
|
2017-07-17 08:57:37 +00:00
|
|
|
]);
|
|
|
|
}));
|
2017-07-18 07:03:52 +00:00
|
|
|
it('should not fail for window object', SX(async function() {
|
2017-09-29 18:27:22 +00:00
|
|
|
let message = null;
|
|
|
|
page.once('console', msg => message = msg);
|
2017-08-02 20:24:34 +00:00
|
|
|
await Promise.all([
|
|
|
|
page.evaluate(() => console.error(window)),
|
|
|
|
waitForEvents(page, 'console')
|
|
|
|
]);
|
2017-10-10 00:01:01 +00:00
|
|
|
expect(message.text).toBe('JSHandle@object');
|
2017-07-18 07:03:52 +00:00
|
|
|
}));
|
2017-07-17 08:57:37 +00:00
|
|
|
});
|
2017-06-15 07:20:37 +00:00
|
|
|
|
2017-10-10 21:50:38 +00:00
|
|
|
describe('Page.getMetrics', function() {
|
|
|
|
it('should get metrics from a page', SX(async function() {
|
|
|
|
await page.goto('about:blank');
|
|
|
|
const metrics = await page.getMetrics();
|
|
|
|
checkMetrics(metrics);
|
|
|
|
}));
|
|
|
|
it('metrics event fired on console.timeStamp', SX(async function() {
|
|
|
|
const metricsPromise = new Promise(fulfill => page.once('metrics', fulfill));
|
|
|
|
await page.evaluate(() => console.timeStamp('test42'));
|
|
|
|
const metrics = await metricsPromise;
|
|
|
|
expect(metrics.title).toBe('test42');
|
|
|
|
checkMetrics(metrics.metrics);
|
|
|
|
}));
|
|
|
|
function checkMetrics(metrics) {
|
|
|
|
const metricsToCheck = new Set([
|
|
|
|
'Timestamp',
|
2017-10-12 08:17:06 +00:00
|
|
|
'Documents',
|
|
|
|
'Frames',
|
|
|
|
'JSEventListeners',
|
|
|
|
'Nodes',
|
2017-10-10 21:50:38 +00:00
|
|
|
'LayoutCount',
|
|
|
|
'RecalcStyleCount',
|
|
|
|
'LayoutDuration',
|
|
|
|
'RecalcStyleDuration',
|
|
|
|
'ScriptDuration',
|
|
|
|
'TaskDuration',
|
|
|
|
'JSHeapUsedSize',
|
|
|
|
'JSHeapTotalSize',
|
|
|
|
]);
|
|
|
|
for (const name in metrics) {
|
|
|
|
expect(metricsToCheck.has(name)).toBeTruthy();
|
|
|
|
expect(metrics[name]).toBeGreaterThanOrEqual(0);
|
|
|
|
metricsToCheck.delete(name);
|
|
|
|
}
|
|
|
|
expect(metricsToCheck.size).toBe(0);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-08-15 20:55:48 +00:00
|
|
|
describe('Page.goto', function() {
|
2017-07-28 23:44:51 +00:00
|
|
|
it('should navigate to about:blank', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const response = await page.goto('about:blank');
|
2017-07-28 23:44:51 +00:00
|
|
|
expect(response).toBe(null);
|
|
|
|
}));
|
2017-06-21 20:51:06 +00:00
|
|
|
it('should fail when navigating to bad url', SX(async function() {
|
2017-07-10 22:09:52 +00:00
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await page.goto('asdfasdf').catch(e => error = e);
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(error.message).toContain('Cannot navigate to invalid URL');
|
|
|
|
}));
|
|
|
|
it('should fail when navigating to bad SSL', SX(async function() {
|
2017-09-29 22:27:02 +00:00
|
|
|
// Make sure that network events do not emit 'undefined'.
|
2017-08-11 08:07:33 +00:00
|
|
|
// @see https://crbug.com/750469
|
2017-07-30 01:16:15 +00:00
|
|
|
page.on('request', request => expect(request).toBeTruthy());
|
|
|
|
page.on('requestfinished', request => expect(request).toBeTruthy());
|
|
|
|
page.on('requestfailed', request => expect(request).toBeTruthy());
|
2017-07-10 22:09:52 +00:00
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await page.goto(HTTPS_PREFIX + '/empty.html').catch(e => error = e);
|
2017-07-23 00:03:58 +00:00
|
|
|
expect(error.message).toContain('SSL Certificate error');
|
2017-07-10 22:09:52 +00:00
|
|
|
}));
|
2017-07-28 00:54:39 +00:00
|
|
|
it('should fail when main resources failed to load', SX(async function() {
|
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await page.goto('http://localhost:44123/non-existing-url').catch(e => error = e);
|
2017-07-28 00:54:39 +00:00
|
|
|
expect(error.message).toContain('Failed to navigate');
|
|
|
|
}));
|
2017-07-10 22:09:52 +00:00
|
|
|
it('should fail when exceeding maximum navigation timeout', SX(async function() {
|
2017-09-11 23:43:37 +00:00
|
|
|
let hasUnhandledRejection = false;
|
|
|
|
const unhandledRejectionHandler = () => hasUnhandledRejection = true;
|
|
|
|
process.on('unhandledRejection', unhandledRejectionHandler);
|
2017-07-10 22:09:52 +00:00
|
|
|
// Hang for request to the empty.html
|
|
|
|
server.setRoute('/empty.html', (req, res) => { });
|
2017-09-11 23:43:37 +00:00
|
|
|
let error = null;
|
|
|
|
await page.goto(PREFIX + '/empty.html', {timeout: 1}).catch(e => error = e);
|
|
|
|
expect(hasUnhandledRejection).toBe(false);
|
|
|
|
expect(error.message).toContain('Navigation Timeout Exceeded: 1ms');
|
|
|
|
process.removeListener('unhandledRejection', unhandledRejectionHandler);
|
2017-07-10 22:09:52 +00:00
|
|
|
}));
|
2017-09-30 07:29:38 +00:00
|
|
|
it('should disable timeout when its set to 0', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
await page.goto(PREFIX + '/grid.html', {timeout: 0}).catch(e => error = e);
|
|
|
|
expect(error).toBe(null);
|
|
|
|
}));
|
2017-07-10 22:09:52 +00:00
|
|
|
it('should work when navigating to valid url', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
const response = await page.goto(EMPTY_PAGE);
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should work when navigating to data url', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
const response = await page.goto('data:text/html,hello');
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should work when navigating to 404', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
const response = await page.goto(PREFIX + '/not-found');
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(false);
|
|
|
|
expect(response.status).toBe(404);
|
2017-06-21 20:51:06 +00:00
|
|
|
}));
|
2017-07-10 22:09:52 +00:00
|
|
|
it('should return last response in redirect chain', SX(async function() {
|
|
|
|
server.setRedirect('/redirect/1.html', '/redirect/2.html');
|
|
|
|
server.setRedirect('/redirect/2.html', '/redirect/3.html');
|
|
|
|
server.setRedirect('/redirect/3.html', EMPTY_PAGE);
|
2017-08-10 07:02:10 +00:00
|
|
|
const response = await page.goto(PREFIX + '/redirect/1.html');
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
|
|
|
expect(response.url).toBe(EMPTY_PAGE);
|
2017-06-21 20:51:06 +00:00
|
|
|
}));
|
2017-06-28 05:02:46 +00:00
|
|
|
it('should wait for network idle to succeed navigation', SX(async function() {
|
|
|
|
let responses = [];
|
2017-06-28 21:39:37 +00:00
|
|
|
// Hold on to a bunch of requests without answering.
|
2017-07-07 15:14:25 +00:00
|
|
|
server.setRoute('/fetch-request-a.js', (req, res) => responses.push(res));
|
|
|
|
server.setRoute('/fetch-request-b.js', (req, res) => responses.push(res));
|
|
|
|
server.setRoute('/fetch-request-c.js', (req, res) => responses.push(res));
|
|
|
|
server.setRoute('/fetch-request-d.js', (req, res) => responses.push(res));
|
2017-08-21 23:39:04 +00:00
|
|
|
const initialFetchResourcesRequested = Promise.all([
|
2017-07-07 15:14:25 +00:00
|
|
|
server.waitForRequest('/fetch-request-a.js'),
|
|
|
|
server.waitForRequest('/fetch-request-b.js'),
|
|
|
|
server.waitForRequest('/fetch-request-c.js'),
|
2017-06-28 05:02:46 +00:00
|
|
|
]);
|
2017-08-21 23:39:04 +00:00
|
|
|
const secondFetchResourceRequested = server.waitForRequest('/fetch-request-d.js');
|
2017-06-28 21:39:37 +00:00
|
|
|
|
2017-06-28 05:02:46 +00:00
|
|
|
// Navigate to a page which loads immediately and then does a bunch of
|
|
|
|
// requests via javascript's fetch method.
|
2017-08-21 23:39:04 +00:00
|
|
|
const navigationPromise = page.goto(PREFIX + '/networkidle.html', {
|
2017-07-14 20:59:36 +00:00
|
|
|
waitUntil: 'networkidle',
|
2017-06-28 21:39:37 +00:00
|
|
|
networkIdleTimeout: 100,
|
|
|
|
networkIdleInflight: 0, // Only be idle when there are 0 inflight requests
|
|
|
|
});
|
|
|
|
// Track when the navigation gets completed.
|
|
|
|
let navigationFinished = false;
|
|
|
|
navigationPromise.then(() => navigationFinished = true);
|
|
|
|
|
|
|
|
// Wait for the page's 'load' event.
|
|
|
|
await new Promise(fulfill => page.once('load', fulfill));
|
|
|
|
expect(navigationFinished).toBe(false);
|
|
|
|
|
|
|
|
// Wait for the initial three resources to be requested.
|
|
|
|
await initialFetchResourcesRequested;
|
|
|
|
|
|
|
|
// Expect navigation still to be not finished.
|
|
|
|
expect(navigationFinished).toBe(false);
|
|
|
|
|
|
|
|
// Respond to initial requests.
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const response of responses) {
|
2017-06-28 21:39:37 +00:00
|
|
|
response.statusCode = 404;
|
|
|
|
response.end(`File not found`);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset responses array
|
|
|
|
responses = [];
|
|
|
|
|
|
|
|
// Wait for the second round to be requested.
|
|
|
|
await secondFetchResourceRequested;
|
|
|
|
// Expect navigation still to be not finished.
|
|
|
|
expect(navigationFinished).toBe(false);
|
|
|
|
|
|
|
|
// Respond to requests.
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const response of responses) {
|
2017-06-28 21:39:37 +00:00
|
|
|
response.statusCode = 404;
|
|
|
|
response.end(`File not found`);
|
|
|
|
}
|
|
|
|
|
2017-07-10 22:09:52 +00:00
|
|
|
const response = await navigationPromise;
|
2017-06-28 21:39:37 +00:00
|
|
|
// Expect navigation to succeed.
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
2017-06-28 21:39:37 +00:00
|
|
|
}));
|
|
|
|
it('should wait for websockets to succeed navigation', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const responses = [];
|
2017-06-28 21:39:37 +00:00
|
|
|
// Hold on to the fetch request without answering.
|
2017-07-07 15:14:25 +00:00
|
|
|
server.setRoute('/fetch-request.js', (req, res) => responses.push(res));
|
2017-08-21 23:39:04 +00:00
|
|
|
const fetchResourceRequested = server.waitForRequest('/fetch-request.js');
|
2017-06-28 21:39:37 +00:00
|
|
|
// Navigate to a page which loads immediately and then opens a bunch of
|
|
|
|
// websocket connections and then a fetch request.
|
2017-08-21 23:39:04 +00:00
|
|
|
const navigationPromise = page.goto(PREFIX + '/websocket.html', {
|
2017-07-14 20:59:36 +00:00
|
|
|
waitUntil: 'networkidle',
|
2017-06-28 21:39:37 +00:00
|
|
|
networkIdleTimeout: 100,
|
|
|
|
networkIdleInflight: 0, // Only be idle when there are 0 inflight requests/connections
|
2017-06-28 05:02:46 +00:00
|
|
|
});
|
|
|
|
// Track when the navigation gets completed.
|
|
|
|
let navigationFinished = false;
|
|
|
|
navigationPromise.then(() => navigationFinished = true);
|
|
|
|
|
|
|
|
// Wait for the page's 'load' event.
|
|
|
|
await new Promise(fulfill => page.once('load', fulfill));
|
|
|
|
expect(navigationFinished).toBe(false);
|
|
|
|
|
2017-06-28 21:39:37 +00:00
|
|
|
// Wait for the resource to be requested.
|
|
|
|
await fetchResourceRequested;
|
2017-06-28 05:02:46 +00:00
|
|
|
|
|
|
|
// Expect navigation still to be not finished.
|
|
|
|
expect(navigationFinished).toBe(false);
|
|
|
|
|
2017-06-28 21:39:37 +00:00
|
|
|
// Respond to the request.
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const response of responses) {
|
2017-06-28 05:02:46 +00:00
|
|
|
response.statusCode = 404;
|
|
|
|
response.end(`File not found`);
|
|
|
|
}
|
2017-07-10 22:09:52 +00:00
|
|
|
const response = await navigationPromise;
|
2017-06-28 05:02:46 +00:00
|
|
|
// Expect navigation to succeed.
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
2017-06-28 05:02:46 +00:00
|
|
|
}));
|
2017-09-29 22:27:02 +00:00
|
|
|
it('should not leak listeners during navigation', SX(async function() {
|
2017-07-23 00:03:58 +00:00
|
|
|
let warning = null;
|
|
|
|
const warningHandler = w => warning = w;
|
|
|
|
process.on('warning', warningHandler);
|
|
|
|
for (let i = 0; i < 20; ++i)
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-07-23 00:03:58 +00:00
|
|
|
process.removeListener('warning', warningHandler);
|
|
|
|
expect(warning).toBe(null);
|
|
|
|
}));
|
2017-09-30 07:50:13 +00:00
|
|
|
it('should not leak listeners during bad navigation', SX(async function() {
|
|
|
|
let warning = null;
|
|
|
|
const warningHandler = w => warning = w;
|
|
|
|
process.on('warning', warningHandler);
|
|
|
|
for (let i = 0; i < 20; ++i)
|
|
|
|
await page.goto('asdf').catch(e => {/* swallow navigation error */});
|
|
|
|
process.removeListener('warning', warningHandler);
|
|
|
|
expect(warning).toBe(null);
|
|
|
|
}));
|
2017-08-15 20:55:48 +00:00
|
|
|
it('should navigate to dataURL and fire dataURL requests', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const requests = [];
|
2017-08-15 20:55:48 +00:00
|
|
|
page.on('request', request => requests.push(request));
|
2017-08-21 23:39:04 +00:00
|
|
|
const dataURL = 'data:text/html,<div>yo</div>';
|
|
|
|
const response = await page.goto(dataURL);
|
2017-08-15 20:55:48 +00:00
|
|
|
expect(response.status).toBe(200);
|
|
|
|
expect(requests.length).toBe(1);
|
|
|
|
expect(requests[0].url).toBe(dataURL);
|
|
|
|
}));
|
|
|
|
it('should navigate to URL with hash and fire requests without hash', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const requests = [];
|
2017-08-15 20:55:48 +00:00
|
|
|
page.on('request', request => requests.push(request));
|
2017-08-21 23:39:04 +00:00
|
|
|
const response = await page.goto(EMPTY_PAGE + '#hash');
|
2017-08-15 20:55:48 +00:00
|
|
|
expect(response.status).toBe(200);
|
|
|
|
expect(response.url).toBe(EMPTY_PAGE);
|
|
|
|
expect(requests.length).toBe(1);
|
|
|
|
expect(requests[0].url).toBe(EMPTY_PAGE);
|
|
|
|
}));
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
2017-06-16 04:22:41 +00:00
|
|
|
|
2017-07-19 01:54:24 +00:00
|
|
|
describe('Page.waitForNavigation', function() {
|
|
|
|
it('should work', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-02 20:24:34 +00:00
|
|
|
const [result] = await Promise.all([
|
|
|
|
page.waitForNavigation(),
|
|
|
|
page.evaluate(url => window.location.href = url, PREFIX + '/grid.html')
|
|
|
|
]);
|
2017-07-19 01:54:24 +00:00
|
|
|
const response = await result;
|
|
|
|
expect(response.ok).toBe(true);
|
|
|
|
expect(response.url).toContain('grid.html');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-07-19 02:11:37 +00:00
|
|
|
describe('Page.goBack', function() {
|
|
|
|
it('should work', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-07-19 02:11:37 +00:00
|
|
|
|
|
|
|
let response = await page.goBack();
|
|
|
|
expect(response.ok).toBe(true);
|
|
|
|
expect(response.url).toContain(EMPTY_PAGE);
|
|
|
|
|
|
|
|
response = await page.goForward();
|
|
|
|
expect(response.ok).toBe(true);
|
|
|
|
expect(response.url).toContain('/grid.html');
|
|
|
|
|
|
|
|
response = await page.goForward();
|
|
|
|
expect(response).toBe(null);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-16 06:04:16 +00:00
|
|
|
describe('Page.exposeFunction', function() {
|
2017-06-21 20:51:06 +00:00
|
|
|
it('should work', SX(async function() {
|
2017-08-16 06:04:16 +00:00
|
|
|
await page.exposeFunction('compute', function(a, b) {
|
2017-06-21 20:51:06 +00:00
|
|
|
return a * b;
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(async function() {
|
2017-08-11 04:44:49 +00:00
|
|
|
return await compute(9, 4);
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
|
|
|
expect(result).toBe(36);
|
|
|
|
}));
|
|
|
|
it('should survive navigation', SX(async function() {
|
2017-08-16 06:04:16 +00:00
|
|
|
await page.exposeFunction('compute', function(a, b) {
|
2017-06-21 20:51:06 +00:00
|
|
|
return a * b;
|
|
|
|
});
|
2017-06-16 18:21:44 +00:00
|
|
|
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(async function() {
|
2017-08-11 04:44:49 +00:00
|
|
|
return await compute(9, 4);
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
|
|
|
expect(result).toBe(36);
|
|
|
|
}));
|
|
|
|
it('should await returned promise', SX(async function() {
|
2017-08-16 06:04:16 +00:00
|
|
|
await page.exposeFunction('compute', function(a, b) {
|
2017-06-21 20:51:06 +00:00
|
|
|
return Promise.resolve(a * b);
|
|
|
|
});
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(async function() {
|
2017-08-11 04:44:49 +00:00
|
|
|
return await compute(3, 5);
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
|
|
|
expect(result).toBe(15);
|
|
|
|
}));
|
|
|
|
});
|
2017-06-17 04:40:00 +00:00
|
|
|
|
2017-08-12 00:24:31 +00:00
|
|
|
describe('Page.setRequestInterceptionEnabled', function() {
|
2017-06-21 20:51:06 +00:00
|
|
|
it('should intercept', SX(async function() {
|
2017-08-12 00:24:31 +00:00
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
page.on('request', request => {
|
2017-06-28 06:31:38 +00:00
|
|
|
expect(request.url).toContain('empty.html');
|
2017-08-28 19:09:24 +00:00
|
|
|
expect(request.headers['user-agent']).toBeTruthy();
|
2017-06-28 06:31:38 +00:00
|
|
|
expect(request.method).toBe('GET');
|
|
|
|
expect(request.postData).toBe(undefined);
|
2017-10-10 17:53:37 +00:00
|
|
|
expect(request.resourceType).toBe('document');
|
2017-06-21 20:51:06 +00:00
|
|
|
request.continue();
|
|
|
|
});
|
2017-08-10 07:02:10 +00:00
|
|
|
const response = await page.goto(EMPTY_PAGE);
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
2017-06-21 20:51:06 +00:00
|
|
|
}));
|
2017-06-29 06:09:28 +00:00
|
|
|
it('should show custom HTTP headers', SX(async function() {
|
2017-08-28 19:09:24 +00:00
|
|
|
await page.setExtraHTTPHeaders({
|
2017-06-21 20:51:06 +00:00
|
|
|
foo: 'bar'
|
2017-08-28 19:09:24 +00:00
|
|
|
});
|
2017-08-12 00:24:31 +00:00
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
page.on('request', request => {
|
2017-08-28 19:09:24 +00:00
|
|
|
expect(request.headers['foo']).toBe('bar');
|
2017-06-21 20:51:06 +00:00
|
|
|
request.continue();
|
|
|
|
});
|
2017-08-10 07:02:10 +00:00
|
|
|
const response = await page.goto(EMPTY_PAGE);
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
2017-06-21 20:51:06 +00:00
|
|
|
}));
|
|
|
|
it('should be abortable', SX(async function() {
|
2017-08-12 00:24:31 +00:00
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
page.on('request', request => {
|
2017-06-28 06:31:38 +00:00
|
|
|
if (request.url.endsWith('.css'))
|
2017-06-21 20:51:06 +00:00
|
|
|
request.abort();
|
|
|
|
else
|
|
|
|
request.continue();
|
|
|
|
});
|
2017-06-29 06:09:28 +00:00
|
|
|
let failedRequests = 0;
|
|
|
|
page.on('requestfailed', event => ++failedRequests);
|
2017-08-10 07:02:10 +00:00
|
|
|
const response = await page.goto(PREFIX + '/one-style.html');
|
2017-07-10 22:09:52 +00:00
|
|
|
expect(response.ok).toBe(true);
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(failedRequests).toBe(1);
|
2017-06-21 20:51:06 +00:00
|
|
|
}));
|
2017-06-28 06:31:38 +00:00
|
|
|
it('should amend HTTP headers', SX(async function() {
|
2017-08-12 00:24:31 +00:00
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
page.on('request', request => {
|
2017-08-28 19:09:24 +00:00
|
|
|
const headers = Object.assign({}, request.headers);
|
|
|
|
headers['FOO'] = 'bar';
|
2017-08-12 00:24:31 +00:00
|
|
|
request.continue({ headers });
|
2017-06-28 06:31:38 +00:00
|
|
|
});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-02 20:24:34 +00:00
|
|
|
const [request] = await Promise.all([
|
|
|
|
server.waitForRequest('/sleep.zzz'),
|
|
|
|
page.evaluate(() => fetch('/sleep.zzz'))
|
|
|
|
]);
|
2017-06-28 06:31:38 +00:00
|
|
|
expect(request.headers['foo']).toBe('bar');
|
|
|
|
}));
|
2017-08-07 22:13:17 +00:00
|
|
|
it('should fail navigation when aborting main resource', SX(async function() {
|
2017-08-12 00:24:31 +00:00
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
page.on('request', request => request.abort());
|
2017-08-07 22:13:17 +00:00
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await page.goto(EMPTY_PAGE).catch(e => error = e);
|
2017-08-07 22:13:17 +00:00
|
|
|
expect(error).toBeTruthy();
|
|
|
|
expect(error.message).toContain('Failed to navigate');
|
|
|
|
}));
|
2017-08-08 00:48:52 +00:00
|
|
|
it('should work with redirects', SX(async function() {
|
2017-08-12 00:24:31 +00:00
|
|
|
await page.setRequestInterceptionEnabled(true);
|
2017-08-29 23:27:59 +00:00
|
|
|
const requests = [];
|
|
|
|
page.on('request', request => {
|
|
|
|
request.continue();
|
|
|
|
requests.push(request);
|
|
|
|
});
|
2017-08-12 00:24:31 +00:00
|
|
|
server.setRedirect('/non-existing-page.html', '/non-existing-page-2.html');
|
|
|
|
server.setRedirect('/non-existing-page-2.html', '/non-existing-page-3.html');
|
|
|
|
server.setRedirect('/non-existing-page-3.html', '/non-existing-page-4.html');
|
|
|
|
server.setRedirect('/non-existing-page-4.html', '/empty.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const response = await page.goto(PREFIX + '/non-existing-page.html');
|
2017-08-08 00:48:52 +00:00
|
|
|
expect(response.status).toBe(200);
|
2017-08-12 00:24:31 +00:00
|
|
|
expect(response.url).toContain('empty.html');
|
2017-08-29 23:27:59 +00:00
|
|
|
expect(requests.length).toBe(5);
|
2017-10-10 17:53:37 +00:00
|
|
|
expect(requests[2].resourceType).toBe('document');
|
2017-08-12 00:24:31 +00:00
|
|
|
}));
|
|
|
|
it('should be able to abort redirects', SX(async function() {
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
server.setRedirect('/non-existing.json', '/non-existing-2.json');
|
|
|
|
server.setRedirect('/non-existing-2.json', '/simple.html');
|
|
|
|
page.on('request', request => {
|
|
|
|
if (request.url.includes('non-existing-2'))
|
|
|
|
request.abort();
|
|
|
|
else
|
|
|
|
request.continue();
|
|
|
|
});
|
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(async() => {
|
2017-08-12 00:24:31 +00:00
|
|
|
try {
|
|
|
|
await fetch('/non-existing.json');
|
|
|
|
} catch (e) {
|
|
|
|
return e.message;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
expect(result).toContain('Failed to fetch');
|
|
|
|
}));
|
|
|
|
it('should work with equal requests', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
let responseCount = 1;
|
|
|
|
server.setRoute('/zzz', (req, res) => res.end((responseCount++) * 11 + ''));
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
|
|
|
|
let spinner = false;
|
|
|
|
// Cancel 2nd request.
|
|
|
|
page.on('request', request => {
|
|
|
|
spinner ? request.abort() : request.continue();
|
|
|
|
spinner = !spinner;
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const results = await page.evaluate(() => Promise.all([
|
2017-08-12 00:24:31 +00:00
|
|
|
fetch('/zzz').then(response => response.text()).catch(e => 'FAILED'),
|
|
|
|
fetch('/zzz').then(response => response.text()).catch(e => 'FAILED'),
|
|
|
|
fetch('/zzz').then(response => response.text()).catch(e => 'FAILED'),
|
|
|
|
]));
|
|
|
|
expect(results).toEqual(['11', 'FAILED', '22']);
|
2017-08-08 00:48:52 +00:00
|
|
|
}));
|
2017-08-15 20:55:48 +00:00
|
|
|
it('should navigate to dataURL and fire dataURL requests', SX(async function() {
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
2017-08-21 23:39:04 +00:00
|
|
|
const requests = [];
|
2017-08-15 20:55:48 +00:00
|
|
|
page.on('request', request => {
|
|
|
|
requests.push(request);
|
|
|
|
request.continue();
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const dataURL = 'data:text/html,<div>yo</div>';
|
|
|
|
const response = await page.goto(dataURL);
|
2017-08-15 20:55:48 +00:00
|
|
|
expect(response.status).toBe(200);
|
|
|
|
expect(requests.length).toBe(1);
|
|
|
|
expect(requests[0].url).toBe(dataURL);
|
|
|
|
}));
|
|
|
|
it('should navigate to URL with hash and and fire requests without hash', SX(async function() {
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
2017-08-21 23:39:04 +00:00
|
|
|
const requests = [];
|
2017-08-15 20:55:48 +00:00
|
|
|
page.on('request', request => {
|
|
|
|
requests.push(request);
|
|
|
|
request.continue();
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const response = await page.goto(EMPTY_PAGE + '#hash');
|
2017-08-15 20:55:48 +00:00
|
|
|
expect(response.status).toBe(200);
|
|
|
|
expect(response.url).toBe(EMPTY_PAGE);
|
|
|
|
expect(requests.length).toBe(1);
|
|
|
|
expect(requests[0].url).toBe(EMPTY_PAGE);
|
|
|
|
}));
|
2017-08-27 19:41:09 +00:00
|
|
|
it('should work with encoded URLs', SX(async function() {
|
|
|
|
// The requestWillBeSent will report encoded URL, whereas interception will
|
|
|
|
// report URL as-is. @see crbug.com/759388
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
page.on('request', request => request.continue());
|
|
|
|
const response = await page.goto(PREFIX + '/some nonexisting page');
|
|
|
|
expect(response.status).toBe(404);
|
|
|
|
}));
|
2017-09-28 23:29:19 +00:00
|
|
|
it('should work with badly encoded URLs', SX(async function() {
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
server.setRoute('/malformed?rnd=%911', (req, res) => res.end());
|
|
|
|
page.on('request', request => request.continue());
|
|
|
|
const response = await page.goto(PREFIX + '/malformed?rnd=%911');
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
}));
|
2017-08-27 19:41:09 +00:00
|
|
|
it('should work with encoded URLs - 2', SX(async function() {
|
|
|
|
// The requestWillBeSent will report URL as-is, whereas interception will
|
|
|
|
// report encoded URL for stylesheet. @see crbug.com/759388
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
const requests = [];
|
|
|
|
page.on('request', request => {
|
|
|
|
request.continue();
|
|
|
|
requests.push(request);
|
|
|
|
});
|
|
|
|
const response = await page.goto(`data:text/html,<link rel="stylesheet" href="${PREFIX}/fonts?helvetica|arial"/>`);
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
expect(requests.length).toBe(2);
|
|
|
|
expect(requests[1].response().status).toBe(404);
|
|
|
|
}));
|
2017-09-11 23:21:51 +00:00
|
|
|
it('should not throw "Invalid Interception Id" if the request was cancelled', SX(async function() {
|
|
|
|
await page.setContent('<iframe></iframe>');
|
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
let request = null;
|
|
|
|
page.on('request', async r => request = r);
|
|
|
|
page.$eval('iframe', (frame, url) => frame.src = url, EMPTY_PAGE),
|
|
|
|
// Wait for request interception.
|
|
|
|
await waitForEvents(page, 'request');
|
|
|
|
// Delete frame to cause request to be canceled.
|
|
|
|
await page.$eval('iframe', frame => frame.remove());
|
|
|
|
let error = null;
|
|
|
|
await request.continue().catch(e => error = e);
|
|
|
|
expect(error).toBe(null);
|
|
|
|
}));
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
2017-06-17 21:27:51 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
describe('Page.Events.Dialog', function() {
|
2017-08-02 20:12:44 +00:00
|
|
|
it('should fire', SX(async function() {
|
2017-06-21 20:51:06 +00:00
|
|
|
page.on('dialog', dialog => {
|
|
|
|
expect(dialog.type).toBe('alert');
|
2017-08-11 19:17:43 +00:00
|
|
|
expect(dialog.defaultValue()).toBe('');
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(dialog.message()).toBe('yo');
|
2017-08-02 20:12:44 +00:00
|
|
|
dialog.accept();
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
2017-08-02 20:12:44 +00:00
|
|
|
await page.evaluate(() => alert('yo'));
|
|
|
|
}));
|
2017-08-02 22:32:20 +00:00
|
|
|
it('should allow accepting prompts', SX(async function() {
|
2017-06-21 20:51:06 +00:00
|
|
|
page.on('dialog', dialog => {
|
|
|
|
expect(dialog.type).toBe('prompt');
|
2017-08-11 19:17:43 +00:00
|
|
|
expect(dialog.defaultValue()).toBe('yes.');
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(dialog.message()).toBe('question?');
|
|
|
|
dialog.accept('answer!');
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => prompt('question?', 'yes.'));
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(result).toBe('answer!');
|
|
|
|
}));
|
2017-08-02 22:32:20 +00:00
|
|
|
it('should dismiss the prompt', SX(async function() {
|
|
|
|
page.on('dialog', dialog => {
|
|
|
|
dialog.dismiss();
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.evaluate(() => prompt('question?'));
|
2017-08-02 22:32:20 +00:00
|
|
|
expect(result).toBe(null);
|
|
|
|
}));
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
2017-06-21 20:36:04 +00:00
|
|
|
|
2017-07-06 18:22:32 +00:00
|
|
|
describe('Page.Events.PageError', function() {
|
2017-07-28 00:20:02 +00:00
|
|
|
it('should fire', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
page.once('pageerror', e => error = e);
|
2017-08-10 07:02:10 +00:00
|
|
|
page.goto(PREFIX + '/error.html');
|
2017-07-28 00:20:02 +00:00
|
|
|
await waitForEvents(page, 'pageerror');
|
|
|
|
expect(error.message).toContain('Fancy');
|
|
|
|
}));
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
2017-06-17 21:27:51 +00:00
|
|
|
|
2017-06-28 08:10:23 +00:00
|
|
|
describe('Page.Events.Request', function() {
|
2017-07-28 00:20:02 +00:00
|
|
|
it('should fire', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const requests = [];
|
2017-06-28 08:10:23 +00:00
|
|
|
page.on('request', request => requests.push(request));
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-28 08:10:23 +00:00
|
|
|
expect(requests.length).toBe(1);
|
|
|
|
expect(requests[0].url).toContain('empty.html');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
describe('Frame Management', function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const FrameUtils = require('./frame-utils');
|
2017-06-21 20:51:06 +00:00
|
|
|
it('should handle nested frames', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/frames/nested-frames.html');
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(FrameUtils.dumpFrames(page.mainFrame())).toBeGolden('nested-frames.txt');
|
|
|
|
}));
|
|
|
|
it('should send events when frames are manipulated dynamically', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-21 20:51:06 +00:00
|
|
|
// validate frameattached events
|
2017-08-21 23:39:04 +00:00
|
|
|
const attachedFrames = [];
|
2017-06-21 20:51:06 +00:00
|
|
|
page.on('frameattached', frame => attachedFrames.push(frame));
|
|
|
|
await FrameUtils.attachFrame(page, 'frame1', './assets/frame.html');
|
|
|
|
expect(attachedFrames.length).toBe(1);
|
|
|
|
expect(attachedFrames[0].url()).toContain('/assets/frame.html');
|
2017-06-17 21:27:51 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
// validate framenavigated events
|
2017-08-21 23:39:04 +00:00
|
|
|
const navigatedFrames = [];
|
2017-06-21 20:51:06 +00:00
|
|
|
page.on('framenavigated', frame => navigatedFrames.push(frame));
|
|
|
|
await FrameUtils.navigateFrame(page, 'frame1', './empty.html');
|
|
|
|
expect(navigatedFrames.length).toBe(1);
|
|
|
|
expect(navigatedFrames[0].url()).toContain('/empty.html');
|
2017-06-21 14:45:13 +00:00
|
|
|
|
2017-06-21 20:51:06 +00:00
|
|
|
// validate framedetached events
|
2017-08-21 23:39:04 +00:00
|
|
|
const detachedFrames = [];
|
2017-06-21 20:51:06 +00:00
|
|
|
page.on('framedetached', frame => detachedFrames.push(frame));
|
|
|
|
await FrameUtils.detachFrame(page, 'frame1');
|
|
|
|
expect(detachedFrames.length).toBe(1);
|
|
|
|
expect(detachedFrames[0].isDetached()).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should persist mainFrame on cross-process navigation', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-21 23:39:04 +00:00
|
|
|
const mainFrame = page.mainFrame();
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto('http://127.0.0.1:' + PORT + '/empty.html');
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(page.mainFrame() === mainFrame).toBeTruthy();
|
|
|
|
}));
|
|
|
|
it('should not send attach/detach events for main frame', SX(async function() {
|
2017-06-22 20:38:10 +00:00
|
|
|
let hasEvents = false;
|
2017-06-21 20:51:06 +00:00
|
|
|
page.on('frameattached', frame => hasEvents = true);
|
|
|
|
page.on('framedetached', frame => hasEvents = true);
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(hasEvents).toBe(false);
|
|
|
|
}));
|
|
|
|
it('should detach child frames on navigation', SX(async function() {
|
2017-06-22 20:38:10 +00:00
|
|
|
let attachedFrames = [];
|
|
|
|
let detachedFrames = [];
|
|
|
|
let navigatedFrames = [];
|
2017-06-21 20:51:06 +00:00
|
|
|
page.on('frameattached', frame => attachedFrames.push(frame));
|
|
|
|
page.on('framedetached', frame => detachedFrames.push(frame));
|
|
|
|
page.on('framenavigated', frame => navigatedFrames.push(frame));
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/frames/nested-frames.html');
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(attachedFrames.length).toBe(4);
|
|
|
|
expect(detachedFrames.length).toBe(0);
|
|
|
|
expect(navigatedFrames.length).toBe(5);
|
|
|
|
|
2017-06-22 20:38:10 +00:00
|
|
|
attachedFrames = [];
|
|
|
|
detachedFrames = [];
|
|
|
|
navigatedFrames = [];
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-21 20:51:06 +00:00
|
|
|
expect(attachedFrames.length).toBe(0);
|
|
|
|
expect(detachedFrames.length).toBe(4);
|
|
|
|
expect(navigatedFrames.length).toBe(1);
|
|
|
|
}));
|
2017-07-27 18:36:03 +00:00
|
|
|
it('should report frame.name()', SX(async function() {
|
|
|
|
await FrameUtils.attachFrame(page, 'theFrameId', EMPTY_PAGE);
|
|
|
|
await page.evaluate(url => {
|
2017-08-21 23:39:04 +00:00
|
|
|
const frame = document.createElement('iframe');
|
2017-07-27 18:36:03 +00:00
|
|
|
frame.name = 'theFrameName';
|
|
|
|
frame.src = url;
|
|
|
|
document.body.appendChild(frame);
|
|
|
|
return new Promise(x => frame.onload = x);
|
|
|
|
}, EMPTY_PAGE);
|
|
|
|
expect(page.frames()[0].name()).toBe('');
|
|
|
|
expect(page.frames()[1].name()).toBe('theFrameId');
|
|
|
|
expect(page.frames()[2].name()).toBe('theFrameName');
|
|
|
|
}));
|
|
|
|
it('should report frame.parent()', SX(async function() {
|
|
|
|
await FrameUtils.attachFrame(page, 'frame1', EMPTY_PAGE);
|
|
|
|
await FrameUtils.attachFrame(page, 'frame2', EMPTY_PAGE);
|
|
|
|
expect(page.frames()[0].parentFrame()).toBe(null);
|
|
|
|
expect(page.frames()[1].parentFrame()).toBe(page.mainFrame());
|
|
|
|
expect(page.frames()[2].parentFrame()).toBe(page.mainFrame());
|
|
|
|
}));
|
2017-06-21 20:51:06 +00:00
|
|
|
});
|
2017-06-28 01:27:22 +00:00
|
|
|
|
2017-08-31 22:38:01 +00:00
|
|
|
describe('Page.$eval', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.setContent('<section id="testAttribute">43543</section>');
|
|
|
|
const idAttribute = await page.$eval('section', e => e.id);
|
|
|
|
expect(idAttribute).toBe('testAttribute');
|
|
|
|
}));
|
|
|
|
it('should accept arguments', SX(async function() {
|
|
|
|
await page.setContent('<section>hello</section>');
|
|
|
|
const text = await page.$eval('section', (e, suffix) => e.textContent + suffix, ' world!');
|
|
|
|
expect(text).toBe('hello world!');
|
|
|
|
}));
|
2017-09-12 02:20:02 +00:00
|
|
|
it('should accept ElementHandles as arguments', SX(async function() {
|
|
|
|
await page.setContent('<section>hello</section><div> world</div>');
|
|
|
|
const divHandle = await page.$('div');
|
|
|
|
const text = await page.$eval('section', (e, div) => e.textContent + div.textContent, divHandle);
|
|
|
|
expect(text).toBe('hello world');
|
|
|
|
}));
|
2017-08-31 22:38:01 +00:00
|
|
|
it('should throw error if no element is found', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
await page.$eval('section', e => e.id).catch(e => error = e);
|
|
|
|
expect(error.message).toContain('failed to find element matching selector "section"');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-10-11 06:23:14 +00:00
|
|
|
describe('Page.$$eval', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.setContent('<div>hello</div><div>beautiful</div><div>world!</div>');
|
|
|
|
const divsCount = await page.$$eval('div', divs => divs.length);
|
|
|
|
expect(divsCount).toBe(3);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-15 21:54:02 +00:00
|
|
|
describe('Page.$', function() {
|
|
|
|
it('should query existing element', SX(async function() {
|
|
|
|
await page.setContent('<section>test</section>');
|
2017-08-21 23:39:04 +00:00
|
|
|
const element = await page.$('section');
|
2017-08-15 21:54:02 +00:00
|
|
|
expect(element).toBeTruthy();
|
|
|
|
}));
|
|
|
|
it('should return null for non-existing element', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const element = await page.$('non-existing-element');
|
2017-08-15 21:54:02 +00:00
|
|
|
expect(element).toBe(null);
|
|
|
|
}));
|
|
|
|
});
|
2017-09-25 09:23:34 +00:00
|
|
|
|
2017-08-23 05:56:55 +00:00
|
|
|
describe('Page.$$', function() {
|
|
|
|
it('should query existing elements', SX(async function() {
|
|
|
|
await page.setContent('<div>A</div><br/><div>B</div>');
|
|
|
|
const elements = await page.$$('div');
|
|
|
|
expect(elements.length).toBe(2);
|
2017-09-12 02:20:02 +00:00
|
|
|
const promises = elements.map(element => page.evaluate(e => e.textContent, element));
|
2017-08-23 05:56:55 +00:00
|
|
|
expect(await Promise.all(promises)).toEqual(['A', 'B']);
|
|
|
|
}));
|
2017-08-23 20:26:52 +00:00
|
|
|
it('should return empty array if nothing is found', SX(async function() {
|
2017-08-23 05:56:55 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
const elements = await page.$$('div');
|
|
|
|
expect(elements.length).toBe(0);
|
|
|
|
}));
|
|
|
|
});
|
2017-08-15 21:54:02 +00:00
|
|
|
|
2017-10-10 06:14:09 +00:00
|
|
|
describe('ElementHandle.boundingBox', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
const elementHandle = await page.$('.box:nth-of-type(13)');
|
|
|
|
const box = await elementHandle.boundingBox();
|
|
|
|
expect(box).toEqual({ x: 100, y: 50, width: 50, height: 50 });
|
|
|
|
}));
|
|
|
|
it('should handle nested frames', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
|
|
|
await page.goto(PREFIX + '/frames/nested-frames.html');
|
|
|
|
const nestedFrame = page.frames()[1].childFrames()[1];
|
|
|
|
const elementHandle = await nestedFrame.$('div');
|
|
|
|
const box = await elementHandle.boundingBox();
|
|
|
|
expect(box).toEqual({ x: 28, y: 260, width: 264, height: 18 });
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-15 21:54:02 +00:00
|
|
|
describe('ElementHandle.click', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const button = await page.$('button');
|
2017-10-06 22:35:02 +00:00
|
|
|
await button.click();
|
2017-08-15 21:54:02 +00:00
|
|
|
expect(await page.evaluate(() => result)).toBe('Clicked');
|
|
|
|
}));
|
2017-10-06 22:35:02 +00:00
|
|
|
it('should work for TextNodes', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
|
|
|
const buttonTextNode = await page.evaluateHandle(() => document.querySelector('button').firstChild);
|
|
|
|
let error = null;
|
|
|
|
await buttonTextNode.click().catch(err => error = err);
|
|
|
|
expect(error.message).toBe('Node is not of type HTMLElement');
|
|
|
|
}));
|
|
|
|
it('should throw for detached nodes', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
|
|
|
const button = await page.$('button');
|
|
|
|
await page.evaluate(button => button.remove(), button);
|
|
|
|
let error = null;
|
|
|
|
await button.click().catch(err => error = err);
|
|
|
|
expect(error.message).toBe('Node is detached from document');
|
|
|
|
}));
|
2017-08-15 21:54:02 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('ElementHandle.hover', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/scrollable.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const button = await page.$('#button-6');
|
2017-08-15 21:54:02 +00:00
|
|
|
await button.hover();
|
|
|
|
expect(await page.evaluate(() => document.querySelector('button:hover').id)).toBe('button-6');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-10-10 06:14:09 +00:00
|
|
|
describe('ElementHandle.screenshot', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
await page.evaluate(() => window.scrollBy(50, 100));
|
|
|
|
const elementHandle = await page.$('.box:nth-of-type(3)');
|
|
|
|
const screenshot = await elementHandle.screenshot();
|
|
|
|
expect(screenshot).toBeGolden('screenshot-element-bounding-box.png');
|
|
|
|
}));
|
2017-10-13 00:53:59 +00:00
|
|
|
it('should take into account padding and border', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
2017-10-13 20:52:28 +00:00
|
|
|
await page.setContent(`
|
|
|
|
something above
|
|
|
|
<style>div {
|
|
|
|
border: 2px solid blue;
|
|
|
|
background: green;
|
|
|
|
width: 50px;
|
|
|
|
height: 50px;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<div></div>
|
|
|
|
`);
|
|
|
|
const elementHandle = await page.$('div');
|
2017-10-13 00:53:59 +00:00
|
|
|
const screenshot = await elementHandle.screenshot();
|
|
|
|
expect(screenshot).toBeGolden('screenshot-element-padding-border.png');
|
|
|
|
}));
|
|
|
|
it('should work with a rotated element', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
|
|
|
await page.setContent(`<div style="position:absolute;
|
|
|
|
top: 100px;
|
|
|
|
left: 100px;
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
|
|
|
background: green;
|
|
|
|
transform: rotateZ(200deg);"> </div>`);
|
|
|
|
const elementHandle = await page.$('div');
|
|
|
|
const screenshot = await elementHandle.screenshot();
|
|
|
|
expect(screenshot).toBeGolden('screenshot-element-rotate.png');
|
|
|
|
}));
|
|
|
|
it('should fail to screenshot a detached element', SX(async function() {
|
|
|
|
await page.setContent('<h1>remove this</h1>');
|
|
|
|
const elementHandle = await page.$('h1');
|
|
|
|
await page.evaluate(element => element.remove(), elementHandle);
|
|
|
|
const screenshotError = await elementHandle.screenshot().catch(error => error);
|
|
|
|
expect(screenshotError.message).toBe('Node is detached from document');
|
|
|
|
}));
|
2017-10-10 06:14:09 +00:00
|
|
|
});
|
|
|
|
|
2017-06-28 01:27:22 +00:00
|
|
|
describe('input', function() {
|
|
|
|
it('should click the button', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
2017-06-28 01:27:22 +00:00
|
|
|
await page.click('button');
|
|
|
|
expect(await page.evaluate(() => result)).toBe('Clicked');
|
|
|
|
}));
|
2017-07-10 18:21:46 +00:00
|
|
|
it('should fail to click a missing button', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
2017-09-13 19:06:57 +00:00
|
|
|
let error = null;
|
|
|
|
await page.click('button.does-not-exist').catch(e => error = e);
|
|
|
|
expect(error.message).toBe('No node found for selector: button.does-not-exist');
|
2017-07-10 18:21:46 +00:00
|
|
|
}));
|
2017-08-04 05:51:51 +00:00
|
|
|
// @see https://github.com/GoogleChrome/puppeteer/issues/161
|
2017-08-11 08:21:02 +00:00
|
|
|
it('should not hang with touch-enabled viewports', SX(async function() {
|
2017-08-04 05:51:51 +00:00
|
|
|
await page.setViewport(iPhone.viewport);
|
|
|
|
await page.mouse.down();
|
|
|
|
await page.mouse.move(100, 10);
|
|
|
|
await page.mouse.up();
|
|
|
|
}));
|
2017-06-28 01:27:22 +00:00
|
|
|
it('should type into the textarea', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-10-07 07:28:24 +00:00
|
|
|
|
|
|
|
const textarea = await page.$('textarea');
|
|
|
|
await textarea.type('Type in this text!');
|
2017-06-28 01:27:22 +00:00
|
|
|
expect(await page.evaluate(() => result)).toBe('Type in this text!');
|
|
|
|
}));
|
|
|
|
it('should click the button after navigation ', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
2017-06-28 01:27:22 +00:00
|
|
|
await page.click('button');
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
2017-06-28 01:27:22 +00:00
|
|
|
await page.click('button');
|
|
|
|
expect(await page.evaluate(() => result)).toBe('Clicked');
|
|
|
|
}));
|
2017-07-10 18:21:46 +00:00
|
|
|
it('should upload the file', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/fileupload.html');
|
2017-07-28 07:06:57 +00:00
|
|
|
const filePath = path.relative(process.cwd(), __dirname + '/assets/file-to-upload.txt');
|
2017-08-21 23:39:04 +00:00
|
|
|
const input = await page.$('input');
|
2017-08-17 21:53:37 +00:00
|
|
|
await input.uploadFile(filePath);
|
2017-09-12 02:20:02 +00:00
|
|
|
expect(await page.evaluate(e => e.files[0].name, input)).toBe('file-to-upload.txt');
|
|
|
|
expect(await page.evaluate(e => {
|
2017-08-21 23:39:04 +00:00
|
|
|
const reader = new FileReader();
|
|
|
|
const promise = new Promise(fulfill => reader.onload = fulfill);
|
2017-08-17 21:53:37 +00:00
|
|
|
reader.readAsText(e.files[0]);
|
2017-07-10 18:21:46 +00:00
|
|
|
return promise.then(() => reader.result);
|
2017-09-12 02:20:02 +00:00
|
|
|
}, input)).toBe('contents of the file');
|
2017-07-10 18:21:46 +00:00
|
|
|
}));
|
2017-07-18 01:49:52 +00:00
|
|
|
it('should move with the arrow keys', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.type('textarea', 'Hello World!');
|
2017-07-18 01:49:52 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('Hello World!');
|
|
|
|
for (let i = 0; i < 'World!'.length; i++)
|
2017-10-07 07:28:24 +00:00
|
|
|
page.keyboard.press('ArrowLeft');
|
|
|
|
await page.keyboard.type('inserted ');
|
2017-07-18 01:49:52 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('Hello inserted World!');
|
2017-07-28 00:20:02 +00:00
|
|
|
page.keyboard.down('Shift');
|
2017-07-18 01:49:52 +00:00
|
|
|
for (let i = 0; i < 'inserted '.length; i++)
|
2017-10-07 07:28:24 +00:00
|
|
|
page.keyboard.press('ArrowLeft');
|
2017-07-28 00:20:02 +00:00
|
|
|
page.keyboard.up('Shift');
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.press('Backspace');
|
2017-07-18 01:49:52 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('Hello World!');
|
|
|
|
}));
|
2017-10-07 07:28:24 +00:00
|
|
|
it('should send a character with ElementHandle.press', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-10-07 07:28:24 +00:00
|
|
|
const textarea = await page.$('textarea');
|
|
|
|
await textarea.press('a', {text: 'f'});
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('f');
|
2017-07-19 21:43:07 +00:00
|
|
|
|
|
|
|
await page.evaluate(() => window.addEventListener('keydown', e => e.preventDefault(), true));
|
|
|
|
|
2017-10-07 07:28:24 +00:00
|
|
|
await textarea.press('a', {text: 'y'});
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('f');
|
2017-07-19 21:43:07 +00:00
|
|
|
}));
|
|
|
|
it('should send a character with sendCharacter', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-07-19 21:43:07 +00:00
|
|
|
await page.focus('textarea');
|
|
|
|
await page.keyboard.sendCharacter('嗨');
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('嗨');
|
2017-07-19 21:43:07 +00:00
|
|
|
await page.evaluate(() => window.addEventListener('keydown', e => e.preventDefault(), true));
|
|
|
|
await page.keyboard.sendCharacter('a');
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('textarea').value)).toBe('嗨a');
|
2017-07-19 21:43:07 +00:00
|
|
|
}));
|
2017-07-18 01:49:52 +00:00
|
|
|
it('should report shiftKey', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/keyboard.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const keyboard = page.keyboard;
|
|
|
|
const codeForKey = {'Shift': 16, 'Alt': 18, 'Meta': 91, 'Control': 17};
|
|
|
|
for (const modifierKey in codeForKey) {
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.down(modifierKey);
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keydown: ' + modifierKey + ' ' + modifierKey + 'Left ' + codeForKey[modifierKey] + ' [' + modifierKey + ']');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.down('!');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keydown: ! Digit1 49 [' + modifierKey + ']');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.up('!');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keyup: ! Digit1 49 [' + modifierKey + ']');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.up(modifierKey);
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keyup: ' + modifierKey + ' ' + modifierKey + 'Left ' + codeForKey[modifierKey] + ' []');
|
2017-07-18 01:49:52 +00:00
|
|
|
}
|
|
|
|
}));
|
|
|
|
it('should report multiple modifiers', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/keyboard.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const keyboard = page.keyboard;
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.down('Control');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keydown: Control ControlLeft 17 [Control]');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.down('Meta');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keydown: Meta MetaLeft 91 [Control Meta]');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.down(';');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keydown: ; Semicolon 186 [Control Meta]');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.up(';');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keyup: ; Semicolon 186 [Control Meta]');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.up('Control');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keyup: Control ControlLeft 17 [Meta]');
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.up('Meta');
|
2017-10-12 01:09:43 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe('Keyup: Meta MetaLeft 91 []');
|
2017-07-18 01:49:52 +00:00
|
|
|
}));
|
|
|
|
it('should send proper codes while typing', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/keyboard.html');
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.type('!');
|
2017-07-18 01:49:52 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe(
|
2017-10-12 01:09:43 +00:00
|
|
|
[ 'Keydown: ! Digit1 49 []',
|
|
|
|
'Keypress: ! Digit1 33 33 33 []',
|
|
|
|
'Keyup: ! Digit1 49 []'].join('\n'));
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.type('^');
|
2017-07-18 01:49:52 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe(
|
2017-10-12 01:09:43 +00:00
|
|
|
[ 'Keydown: ^ Digit6 54 []',
|
|
|
|
'Keypress: ^ Digit6 94 94 94 []',
|
|
|
|
'Keyup: ^ Digit6 54 []'].join('\n'));
|
2017-07-18 01:49:52 +00:00
|
|
|
}));
|
2017-09-29 22:27:02 +00:00
|
|
|
it('should send proper codes while typing with shift', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/keyboard.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const keyboard = page.keyboard;
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.down('Shift');
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.type('~');
|
2017-07-18 01:49:52 +00:00
|
|
|
expect(await page.evaluate(() => getResult())).toBe(
|
2017-10-12 01:09:43 +00:00
|
|
|
[ 'Keydown: Shift ShiftLeft 16 [Shift]',
|
|
|
|
'Keydown: ~ Backquote 192 [Shift]', // 192 is ` keyCode
|
|
|
|
'Keypress: ~ Backquote 126 126 126 [Shift]', // 126 is ~ charCode
|
|
|
|
'Keyup: ~ Backquote 192 [Shift]'].join('\n'));
|
2017-07-19 21:27:01 +00:00
|
|
|
await keyboard.up('Shift');
|
2017-07-18 01:49:52 +00:00
|
|
|
}));
|
|
|
|
it('should not type canceled events', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-07-18 01:49:52 +00:00
|
|
|
await page.focus('textarea');
|
|
|
|
await page.evaluate(() => {
|
|
|
|
window.addEventListener('keydown', event => {
|
|
|
|
event.stopPropagation();
|
|
|
|
event.stopImmediatePropagation();
|
|
|
|
if (event.key === 'l')
|
|
|
|
event.preventDefault();
|
|
|
|
if (event.key === 'o')
|
|
|
|
Promise.resolve().then(() => event.preventDefault());
|
|
|
|
}, false);
|
|
|
|
});
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.type('Hello World!');
|
2017-07-18 01:49:52 +00:00
|
|
|
expect(await page.evaluate(() => textarea.value)).toBe('He Wrd!');
|
|
|
|
}));
|
|
|
|
it('keyboard.modifiers()', SX(async function(){
|
2017-08-21 23:39:04 +00:00
|
|
|
const keyboard = page.keyboard;
|
2017-07-25 21:35:03 +00:00
|
|
|
expect(keyboard._modifiers).toBe(0);
|
2017-07-28 00:20:02 +00:00
|
|
|
await keyboard.down('Shift');
|
2017-07-25 21:35:03 +00:00
|
|
|
expect(keyboard._modifiers).toBe(8);
|
2017-07-28 00:20:02 +00:00
|
|
|
await keyboard.down('Alt');
|
2017-07-25 21:35:03 +00:00
|
|
|
expect(keyboard._modifiers).toBe(9);
|
2017-07-28 00:20:02 +00:00
|
|
|
await keyboard.up('Shift');
|
|
|
|
await keyboard.up('Alt');
|
2017-07-25 21:35:03 +00:00
|
|
|
expect(keyboard._modifiers).toBe(0);
|
2017-07-18 01:49:52 +00:00
|
|
|
}));
|
2017-07-22 03:29:31 +00:00
|
|
|
it('should resize the textarea', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const {x, y, width, height} = await page.evaluate(dimensions);
|
|
|
|
const mouse = page.mouse;
|
2017-07-22 03:29:31 +00:00
|
|
|
await mouse.move(x + width - 4, y + height - 4);
|
|
|
|
await mouse.down();
|
|
|
|
await mouse.move(x + width + 100, y + height + 100);
|
|
|
|
await mouse.up();
|
2017-08-21 23:39:04 +00:00
|
|
|
const newDimensions = await page.evaluate(dimensions);
|
2017-07-22 03:29:31 +00:00
|
|
|
expect(newDimensions.width).toBe(width + 104);
|
|
|
|
expect(newDimensions.height).toBe(height + 104);
|
|
|
|
}));
|
|
|
|
it('should scroll and click the button', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/scrollable.html');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.click('#button-5');
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('#button-5').textContent)).toBe('clicked');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.click('#button-80');
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('#button-80').textContent)).toBe('clicked');
|
2017-07-22 03:29:31 +00:00
|
|
|
}));
|
2017-07-24 23:14:32 +00:00
|
|
|
it('should click a partially obscured button', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
2017-08-03 20:35:31 +00:00
|
|
|
await page.evaluate(() => {
|
2017-08-21 23:39:04 +00:00
|
|
|
const button = document.querySelector('button');
|
2017-07-24 23:14:32 +00:00
|
|
|
button.textContent = 'Some really long text that will go offscreen';
|
|
|
|
button.style.position = 'absolute';
|
|
|
|
button.style.left = '368px';
|
|
|
|
});
|
|
|
|
await page.click('button');
|
|
|
|
expect(await page.evaluate(() => window.result)).toBe('Clicked');
|
|
|
|
}));
|
2017-07-22 03:29:31 +00:00
|
|
|
it('should select the text with mouse', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.focus('textarea');
|
2017-08-21 23:39:04 +00:00
|
|
|
const text = 'This is the text that we are going to try to select. Let\'s see how it goes.';
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.type(text);
|
2017-08-03 20:35:31 +00:00
|
|
|
await page.evaluate(() => document.querySelector('textarea').scrollTop = 0);
|
2017-08-21 23:39:04 +00:00
|
|
|
const {x, y} = await page.evaluate(dimensions);
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.mouse.move(x + 2,y + 2);
|
|
|
|
await page.mouse.down();
|
|
|
|
await page.mouse.move(100,100);
|
|
|
|
await page.mouse.up();
|
|
|
|
expect(await page.evaluate(() => window.getSelection().toString())).toBe(text);
|
|
|
|
}));
|
|
|
|
it('should select the text by triple clicking', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.focus('textarea');
|
2017-08-21 23:39:04 +00:00
|
|
|
const text = 'This is the text that we are going to try to select. Let\'s see how it goes.';
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.type(text);
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.click('textarea');
|
|
|
|
await page.click('textarea', {clickCount: 2});
|
|
|
|
await page.click('textarea', {clickCount: 3});
|
|
|
|
expect(await page.evaluate(() => window.getSelection().toString())).toBe(text);
|
|
|
|
}));
|
|
|
|
it('should trigger hover state', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/scrollable.html');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.hover('#button-6');
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('button:hover').id)).toBe('button-6');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.hover('#button-2');
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('button:hover').id)).toBe('button-2');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.hover('#button-91');
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('button:hover').id)).toBe('button-91');
|
2017-07-22 03:29:31 +00:00
|
|
|
}));
|
|
|
|
it('should fire contextmenu event on right click', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/scrollable.html');
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.click('#button-8', {button: 'right'});
|
2017-08-03 20:35:31 +00:00
|
|
|
expect(await page.evaluate(() => document.querySelector('#button-8').textContent)).toBe('context menu');
|
2017-07-22 03:29:31 +00:00
|
|
|
}));
|
|
|
|
it('should set modifier keys on click', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/scrollable.html');
|
2017-08-03 20:35:31 +00:00
|
|
|
await page.evaluate(() => document.querySelector('#button-3').addEventListener('mousedown', e => window.lastEvent = e, true));
|
2017-08-21 23:39:04 +00:00
|
|
|
const modifiers = {'Shift': 'shiftKey', 'Control': 'ctrlKey', 'Alt': 'altKey', 'Meta': 'metaKey'};
|
|
|
|
for (const modifier in modifiers) {
|
2017-07-22 03:29:31 +00:00
|
|
|
await page.keyboard.down(modifier);
|
|
|
|
await page.click('#button-3');
|
|
|
|
if (!(await page.evaluate(mod => window.lastEvent[mod], modifiers[modifier])))
|
|
|
|
fail(modifiers[modifier] + ' should be true');
|
|
|
|
await page.keyboard.up(modifier);
|
|
|
|
}
|
|
|
|
await page.click('#button-3');
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const modifier in modifiers) {
|
2017-07-22 03:29:31 +00:00
|
|
|
if ((await page.evaluate(mod => window.lastEvent[mod], modifiers[modifier])))
|
|
|
|
fail(modifiers[modifier] + ' should be false');
|
|
|
|
}
|
|
|
|
}));
|
2017-07-31 19:05:46 +00:00
|
|
|
it('should specify repeat property', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/textarea.html');
|
2017-07-31 19:05:46 +00:00
|
|
|
await page.focus('textarea');
|
2017-08-03 20:35:31 +00:00
|
|
|
await page.evaluate(() => document.querySelector('textarea').addEventListener('keydown', e => window.lastEvent = e, true));
|
2017-07-31 19:05:46 +00:00
|
|
|
await page.keyboard.down('a', {text: 'a'});
|
|
|
|
expect(await page.evaluate(() => window.lastEvent.repeat)).toBe(false);
|
2017-10-07 07:28:24 +00:00
|
|
|
await page.keyboard.press('a');
|
2017-07-31 19:05:46 +00:00
|
|
|
expect(await page.evaluate(() => window.lastEvent.repeat)).toBe(true);
|
|
|
|
}));
|
2017-08-04 05:51:51 +00:00
|
|
|
// @see https://github.com/GoogleChrome/puppeteer/issues/206
|
2017-08-11 08:21:02 +00:00
|
|
|
it('should click links which cause navigation', SX(async function() {
|
2017-08-04 05:10:06 +00:00
|
|
|
await page.setContent(`<a href="${EMPTY_PAGE}">empty.html</a>`);
|
|
|
|
// This await should not hang.
|
|
|
|
await page.click('a');
|
|
|
|
}));
|
2017-08-29 21:13:38 +00:00
|
|
|
it('should tween mouse movement', SX(async function() {
|
|
|
|
await page.evaluate(() => {
|
|
|
|
window.result = [];
|
|
|
|
document.addEventListener('mousemove', event => {
|
|
|
|
window.result.push([event.clientX, event.clientY]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
await page.mouse.move(100, 100);
|
|
|
|
await page.mouse.move(200, 300, {steps: 5});
|
|
|
|
expect(await page.evaluate('result')).toEqual([
|
|
|
|
[100, 100],
|
|
|
|
[120, 140],
|
|
|
|
[140, 180],
|
|
|
|
[160, 220],
|
|
|
|
[180, 260],
|
|
|
|
[200, 300]
|
|
|
|
]);
|
|
|
|
}));
|
2017-09-02 02:03:51 +00:00
|
|
|
it('should tap the button', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
|
|
|
await page.tap('button');
|
|
|
|
expect(await page.evaluate(() => result)).toBe('Clicked');
|
|
|
|
}));
|
2017-09-09 06:42:06 +00:00
|
|
|
xit('should report touches', SX(async function() {
|
2017-09-02 02:03:51 +00:00
|
|
|
await page.goto(PREFIX + '/input/touches.html');
|
|
|
|
const button = await page.$('button');
|
|
|
|
await button.tap();
|
|
|
|
expect(await page.evaluate(() => getResult())).toEqual(['Touchstart: 0', 'Touchend: 0']);
|
|
|
|
}));
|
2017-10-09 20:23:36 +00:00
|
|
|
it('should click the button inside an iframe', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.setContent('<div style="width:100px;height:100px">spacer</div>');
|
|
|
|
const FrameUtils = require('./frame-utils');
|
|
|
|
await FrameUtils.attachFrame(page, 'button-test', PREFIX + '/input/button.html');
|
|
|
|
const frame = page.frames()[1];
|
|
|
|
const button = await frame.$('button');
|
|
|
|
await button.click();
|
|
|
|
expect(await frame.evaluate(() => window.result)).toBe('Clicked');
|
|
|
|
}));
|
|
|
|
it('should click the button with deviceScaleFactor set', SX(async function() {
|
|
|
|
await page.setViewport({width: 400, height: 400, deviceScaleFactor: 5});
|
|
|
|
expect(await page.evaluate(() => window.devicePixelRatio)).toBe(5);
|
|
|
|
await page.setContent('<div style="width:100px;height:100px">spacer</div>');
|
|
|
|
const FrameUtils = require('./frame-utils');
|
|
|
|
await FrameUtils.attachFrame(page, 'button-test', PREFIX + '/input/button.html');
|
|
|
|
const frame = page.frames()[1];
|
|
|
|
const button = await frame.$('button');
|
|
|
|
await button.click();
|
|
|
|
expect(await frame.evaluate(() => window.result)).toBe('Clicked');
|
|
|
|
}));
|
2017-07-22 03:29:31 +00:00
|
|
|
function dimensions() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const rect = document.querySelector('textarea').getBoundingClientRect();
|
2017-07-22 03:29:31 +00:00
|
|
|
return {
|
|
|
|
x: rect.left,
|
|
|
|
y: rect.top,
|
|
|
|
width: rect.width,
|
|
|
|
height: rect.height
|
|
|
|
};
|
|
|
|
}
|
2017-06-28 01:27:22 +00:00
|
|
|
});
|
2017-07-20 22:29:09 +00:00
|
|
|
|
2017-06-29 06:09:28 +00:00
|
|
|
describe('Page.setUserAgent', function() {
|
|
|
|
it('should work', SX(async function() {
|
2017-07-25 09:01:10 +00:00
|
|
|
expect(await page.evaluate(() => navigator.userAgent)).toContain('Mozilla');
|
2017-06-29 06:09:28 +00:00
|
|
|
page.setUserAgent('foobar');
|
2017-09-14 05:52:43 +00:00
|
|
|
const [request] = await Promise.all([
|
|
|
|
server.waitForRequest('/empty.html'),
|
|
|
|
page.goto(EMPTY_PAGE),
|
|
|
|
]);
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(request.headers['user-agent']).toBe('foobar');
|
|
|
|
}));
|
2017-07-21 01:14:43 +00:00
|
|
|
it('should emulate device user-agent', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/mobile.html');
|
2017-07-21 01:14:43 +00:00
|
|
|
expect(await page.evaluate(() => navigator.userAgent)).toContain('Chrome');
|
|
|
|
await page.setUserAgent(iPhone.userAgent);
|
|
|
|
expect(await page.evaluate(() => navigator.userAgent)).toContain('Safari');
|
|
|
|
}));
|
2017-06-29 06:09:28 +00:00
|
|
|
});
|
2017-09-25 09:23:34 +00:00
|
|
|
|
2017-07-27 19:25:52 +00:00
|
|
|
describe('Page.setExtraHTTPHeaders', function() {
|
2017-06-29 06:09:28 +00:00
|
|
|
it('should work', SX(async function() {
|
2017-08-28 19:09:24 +00:00
|
|
|
await page.setExtraHTTPHeaders({
|
2017-07-27 19:25:52 +00:00
|
|
|
foo: 'bar'
|
2017-08-28 19:09:24 +00:00
|
|
|
});
|
2017-09-14 05:52:43 +00:00
|
|
|
const [request] = await Promise.all([
|
|
|
|
server.waitForRequest('/empty.html'),
|
|
|
|
page.goto(EMPTY_PAGE),
|
|
|
|
]);
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(request.headers['foo']).toBe('bar');
|
|
|
|
}));
|
2017-09-15 02:08:48 +00:00
|
|
|
it('should throw for non-string header values', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
await page.setExtraHTTPHeaders({ 'foo': 1 });
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
expect(error.message).toBe('Expected value of header "foo" to be String, but "number" is found.');
|
|
|
|
}));
|
2017-06-29 06:09:28 +00:00
|
|
|
});
|
2017-09-25 09:23:34 +00:00
|
|
|
|
2017-09-11 23:32:13 +00:00
|
|
|
describe('Page.authenticate', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
server.setAuth('/empty.html', 'user', 'pass');
|
|
|
|
let response = await page.goto(EMPTY_PAGE);
|
|
|
|
expect(response.status).toBe(401);
|
|
|
|
await page.authenticate({
|
|
|
|
username: 'user',
|
|
|
|
password: 'pass'
|
|
|
|
});
|
|
|
|
response = await page.reload();
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
}));
|
|
|
|
it('should fail if wrong credentials', SX(async function() {
|
|
|
|
// Use unique user/password since Chrome caches credentials per origin.
|
|
|
|
server.setAuth('/empty.html', 'user2', 'pass2');
|
|
|
|
await page.authenticate({
|
|
|
|
username: 'foo',
|
|
|
|
password: 'bar'
|
|
|
|
});
|
|
|
|
const response = await page.goto(EMPTY_PAGE);
|
|
|
|
expect(response.status).toBe(401);
|
|
|
|
}));
|
|
|
|
it('should allow disable authentication', SX(async function() {
|
|
|
|
// Use unique user/password since Chrome caches credentials per origin.
|
|
|
|
server.setAuth('/empty.html', 'user3', 'pass3');
|
|
|
|
await page.authenticate({
|
|
|
|
username: 'user3',
|
|
|
|
password: 'pass3'
|
|
|
|
});
|
|
|
|
let response = await page.goto(EMPTY_PAGE);
|
|
|
|
expect(response.status).toBe(200);
|
|
|
|
await page.authenticate(null);
|
|
|
|
// Navigate to a different origin to bust Chrome's credential caching.
|
|
|
|
response = await page.goto(CROSS_PROCESS_PREFIX + '/empty.html');
|
|
|
|
expect(response.status).toBe(401);
|
|
|
|
}));
|
|
|
|
});
|
2017-09-25 09:23:34 +00:00
|
|
|
|
2017-07-06 01:09:17 +00:00
|
|
|
describe('Page.setContent', function() {
|
2017-08-21 16:02:30 +00:00
|
|
|
const expectedOutput = '<html><head></head><body><div>hello</div></body></html>';
|
2017-07-06 01:09:17 +00:00
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.setContent('<div>hello</div>');
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.content();
|
2017-08-21 16:02:30 +00:00
|
|
|
expect(result).toBe(expectedOutput);
|
|
|
|
}));
|
|
|
|
it('should work with doctype', SX(async function() {
|
|
|
|
const doctype = '<!DOCTYPE html>';
|
|
|
|
await page.setContent(`${doctype}<div>hello</div>`);
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.content();
|
2017-08-21 16:02:30 +00:00
|
|
|
expect(result).toBe(`${doctype}${expectedOutput}`);
|
|
|
|
}));
|
|
|
|
it('should work with HTML 4 doctype', SX(async function() {
|
|
|
|
const doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" ' +
|
|
|
|
'"http://www.w3.org/TR/html4/strict.dtd">';
|
|
|
|
await page.setContent(`${doctype}<div>hello</div>`);
|
2017-08-21 23:39:04 +00:00
|
|
|
const result = await page.content();
|
2017-08-21 16:02:30 +00:00
|
|
|
expect(result).toBe(`${doctype}${expectedOutput}`);
|
2017-07-06 01:09:17 +00:00
|
|
|
}));
|
|
|
|
});
|
2017-09-25 09:23:34 +00:00
|
|
|
|
2017-06-29 06:09:28 +00:00
|
|
|
describe('Network Events', function() {
|
|
|
|
it('Page.Events.Request', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const requests = [];
|
2017-06-29 06:09:28 +00:00
|
|
|
page.on('request', request => requests.push(request));
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(requests.length).toBe(1);
|
|
|
|
expect(requests[0].url).toBe(EMPTY_PAGE);
|
2017-10-10 17:53:37 +00:00
|
|
|
expect(requests[0].resourceType).toBe('document');
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(requests[0].method).toBe('GET');
|
|
|
|
expect(requests[0].response()).toBeTruthy();
|
|
|
|
}));
|
2017-07-28 06:11:24 +00:00
|
|
|
it('Page.Events.Request should report post data', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-07-28 06:11:24 +00:00
|
|
|
server.setRoute('/post', (req, res) => res.end());
|
|
|
|
let request = null;
|
|
|
|
page.on('request', r => request = r);
|
|
|
|
await page.evaluate(() => fetch('./post', { method: 'POST', body: JSON.stringify({foo: 'bar'})}));
|
|
|
|
expect(request).toBeTruthy();
|
|
|
|
expect(request.postData).toBe('{"foo":"bar"}');
|
|
|
|
}));
|
2017-06-29 06:09:28 +00:00
|
|
|
it('Page.Events.Response', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const responses = [];
|
2017-06-29 06:09:28 +00:00
|
|
|
page.on('response', response => responses.push(response));
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(responses.length).toBe(1);
|
|
|
|
expect(responses[0].url).toBe(EMPTY_PAGE);
|
|
|
|
expect(responses[0].status).toBe(200);
|
|
|
|
expect(responses[0].ok).toBe(true);
|
|
|
|
expect(responses[0].request()).toBeTruthy();
|
|
|
|
}));
|
2017-07-28 06:11:24 +00:00
|
|
|
it('Page.Events.Response should provide body', SX(async function() {
|
|
|
|
let response = null;
|
|
|
|
page.on('response', r => response = r);
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/simple.json');
|
2017-07-28 06:11:24 +00:00
|
|
|
expect(response).toBeTruthy();
|
|
|
|
expect(await response.text()).toBe('{"foo": "bar"}\n');
|
|
|
|
expect(await response.json()).toEqual({foo: 'bar'});
|
|
|
|
}));
|
2017-07-30 00:42:00 +00:00
|
|
|
it('Page.Events.Response should not report body unless request is finished', SX(async() => {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-07-30 00:42:00 +00:00
|
|
|
// Setup server to trap request.
|
|
|
|
let serverResponse = null;
|
|
|
|
server.setRoute('/get', (req, res) => {
|
|
|
|
serverResponse = res;
|
|
|
|
res.write('hello ');
|
|
|
|
});
|
|
|
|
// Setup page to trap response.
|
|
|
|
let pageResponse = null;
|
|
|
|
let requestFinished = false;
|
|
|
|
page.on('response', r => pageResponse = r);
|
|
|
|
page.on('requestfinished', () => requestFinished = true);
|
|
|
|
// send request and wait for server response
|
2017-08-02 20:24:34 +00:00
|
|
|
await Promise.all([
|
|
|
|
page.evaluate(() => fetch('./get', { method: 'GET'})),
|
|
|
|
waitForEvents(page, 'response')
|
|
|
|
]);
|
2017-07-30 00:42:00 +00:00
|
|
|
|
|
|
|
expect(serverResponse).toBeTruthy();
|
|
|
|
expect(pageResponse).toBeTruthy();
|
|
|
|
expect(pageResponse.status).toBe(200);
|
|
|
|
expect(requestFinished).toBe(false);
|
|
|
|
|
2017-08-21 23:39:04 +00:00
|
|
|
const responseText = pageResponse.text();
|
2017-07-30 00:42:00 +00:00
|
|
|
// Write part of the response and wait for it to be flushed.
|
|
|
|
await new Promise(x => serverResponse.write('wor', x));
|
|
|
|
// Finish response.
|
|
|
|
await new Promise(x => serverResponse.end('ld!', x));
|
|
|
|
expect(await responseText).toBe('hello world!');
|
|
|
|
}));
|
2017-06-29 06:09:28 +00:00
|
|
|
it('Page.Events.RequestFailed', SX(async function() {
|
2017-08-12 00:24:31 +00:00
|
|
|
await page.setRequestInterceptionEnabled(true);
|
|
|
|
page.on('request', request => {
|
2017-06-29 06:09:28 +00:00
|
|
|
if (request.url.endsWith('css'))
|
|
|
|
request.abort();
|
|
|
|
else
|
|
|
|
request.continue();
|
|
|
|
});
|
2017-08-21 23:39:04 +00:00
|
|
|
const failedRequests = [];
|
2017-06-29 06:09:28 +00:00
|
|
|
page.on('requestfailed', request => failedRequests.push(request));
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/one-style.html');
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(failedRequests.length).toBe(1);
|
|
|
|
expect(failedRequests[0].url).toContain('one-style.css');
|
|
|
|
expect(failedRequests[0].response()).toBe(null);
|
2017-10-10 17:53:37 +00:00
|
|
|
expect(failedRequests[0].resourceType).toBe('stylesheet');
|
2017-06-29 06:09:28 +00:00
|
|
|
}));
|
|
|
|
it('Page.Events.RequestFinished', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const requests = [];
|
2017-06-29 06:09:28 +00:00
|
|
|
page.on('requestfinished', request => requests.push(request));
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(requests.length).toBe(1);
|
|
|
|
expect(requests[0].url).toBe(EMPTY_PAGE);
|
|
|
|
expect(requests[0].response()).toBeTruthy();
|
|
|
|
}));
|
|
|
|
it('should fire events in proper order', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const events = [];
|
2017-06-29 06:09:28 +00:00
|
|
|
page.on('request', request => events.push('request'));
|
|
|
|
page.on('response', response => events.push('response'));
|
|
|
|
page.on('requestfinished', request => events.push('requestfinished'));
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-06-29 06:09:28 +00:00
|
|
|
expect(events).toEqual(['request', 'response', 'requestfinished']);
|
|
|
|
}));
|
2017-06-30 01:54:01 +00:00
|
|
|
it('should support redirects', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const events = [];
|
2017-06-30 01:54:01 +00:00
|
|
|
page.on('request', request => events.push(`${request.method} ${request.url}`));
|
|
|
|
page.on('response', response => events.push(`${response.status} ${response.url}`));
|
|
|
|
page.on('requestfinished', request => events.push(`DONE ${request.url}`));
|
|
|
|
page.on('requestfailed', request => events.push(`FAIL ${request.url}`));
|
2017-07-07 15:14:25 +00:00
|
|
|
server.setRedirect('/foo.html', '/empty.html');
|
2017-07-10 22:09:52 +00:00
|
|
|
const FOO_URL = PREFIX + '/foo.html';
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(FOO_URL);
|
2017-06-30 01:54:01 +00:00
|
|
|
expect(events).toEqual([
|
|
|
|
`GET ${FOO_URL}`,
|
|
|
|
`302 ${FOO_URL}`,
|
|
|
|
`DONE ${FOO_URL}`,
|
|
|
|
`GET ${EMPTY_PAGE}`,
|
|
|
|
`200 ${EMPTY_PAGE}`,
|
|
|
|
`DONE ${EMPTY_PAGE}`
|
|
|
|
]);
|
|
|
|
}));
|
2017-06-29 06:09:28 +00:00
|
|
|
});
|
2017-07-10 17:09:59 +00:00
|
|
|
|
|
|
|
describe('Page.addScriptTag', function() {
|
2017-10-12 08:26:44 +00:00
|
|
|
it('should throw an error if no options are provided', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
await page.addScriptTag('/injectedfile.js');
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
expect(error.message).toBe('Provide an object with a `url`, `path` or `content` property');
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should work with a url', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-10-12 08:26:44 +00:00
|
|
|
await page.addScriptTag({ url: '/injectedfile.js' });
|
2017-07-10 17:09:59 +00:00
|
|
|
expect(await page.evaluate(() => __injected)).toBe(42);
|
|
|
|
}));
|
2017-10-12 08:26:44 +00:00
|
|
|
|
|
|
|
it('should work with a path', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.addScriptTag({ path: path.join(__dirname, 'assets/injectedfile.js') });
|
|
|
|
expect(await page.evaluate(() => __injected)).toBe(42);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should include sourcemap when path is provided', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.addScriptTag({ path: path.join(__dirname, 'assets/injectedfile.js') });
|
|
|
|
const result = await page.evaluate(() => __injectedError.stack);
|
|
|
|
expect(result).toContain(path.join('assets', 'injectedfile.js'));
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should work with content', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.addScriptTag({ content: 'window.__injected = 35;' });
|
|
|
|
expect(await page.evaluate(() => __injected)).toBe(35);
|
|
|
|
}));
|
2017-07-10 17:09:59 +00:00
|
|
|
});
|
|
|
|
|
2017-10-04 20:42:26 +00:00
|
|
|
describe('Page.addStyleTag', function() {
|
2017-10-12 08:26:44 +00:00
|
|
|
it('should throw an error if no options are provided', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
await page.addStyleTag('/injectedstyle.css');
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
expect(error.message).toBe('Provide an object with a `url`, `path` or `content` property');
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should work with a url', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.addStyleTag({ url: '/injectedstyle.css' });
|
|
|
|
expect(await page.evaluate(`window.getComputedStyle(document.querySelector('body')).getPropertyValue('background-color')`)).toBe('rgb(255, 0, 0)');
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should work with a path', SX(async function() {
|
2017-10-04 20:42:26 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-10-12 08:26:44 +00:00
|
|
|
await page.addStyleTag({ path: path.join(__dirname, 'assets/injectedstyle.css') });
|
2017-10-04 20:42:26 +00:00
|
|
|
expect(await page.evaluate(`window.getComputedStyle(document.querySelector('body')).getPropertyValue('background-color')`)).toBe('rgb(255, 0, 0)');
|
|
|
|
}));
|
2017-10-12 08:26:44 +00:00
|
|
|
|
|
|
|
it('should include sourcemap when path is provided', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.addStyleTag({ path: path.join(__dirname, 'assets/injectedstyle.css') });
|
|
|
|
const styleHandle = await page.$('style');
|
|
|
|
const styleContent = await page.evaluate(style => style.innerHTML, styleHandle);
|
|
|
|
expect(styleContent).toContain(path.join('assets', 'injectedstyle.css'));
|
|
|
|
styleHandle.dispose();
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should work with content', SX(async function() {
|
|
|
|
await page.goto(EMPTY_PAGE);
|
|
|
|
await page.addStyleTag({ content: 'body { background-color: green; }' });
|
|
|
|
expect(await page.evaluate(`window.getComputedStyle(document.querySelector('body')).getPropertyValue('background-color')`)).toBe('rgb(0, 128, 0)');
|
|
|
|
}));
|
2017-10-04 20:42:26 +00:00
|
|
|
});
|
|
|
|
|
2017-07-10 17:09:59 +00:00
|
|
|
describe('Page.url', function() {
|
|
|
|
it('should work', SX(async function() {
|
2017-07-14 21:05:27 +00:00
|
|
|
expect(page.url()).toBe('about:blank');
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-07-14 21:05:27 +00:00
|
|
|
expect(page.url()).toBe(EMPTY_PAGE);
|
2017-07-10 17:09:59 +00:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-07-18 01:13:04 +00:00
|
|
|
describe('Page.viewport', function() {
|
2017-07-10 17:09:59 +00:00
|
|
|
it('should get the proper viewport size', SX(async function() {
|
2017-08-02 22:47:00 +00:00
|
|
|
expect(page.viewport()).toEqual({width: 800, height: 600});
|
2017-07-18 01:13:04 +00:00
|
|
|
await page.setViewport({width: 123, height: 456});
|
|
|
|
expect(page.viewport()).toEqual({width: 123, height: 456});
|
2017-07-10 17:09:59 +00:00
|
|
|
}));
|
2017-07-21 01:14:43 +00:00
|
|
|
it('should support mobile emulation', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/mobile.html');
|
2017-08-02 22:47:00 +00:00
|
|
|
expect(await page.evaluate(() => window.innerWidth)).toBe(800);
|
2017-07-21 01:14:43 +00:00
|
|
|
await page.setViewport(iPhone.viewport);
|
|
|
|
expect(await page.evaluate(() => window.innerWidth)).toBe(375);
|
|
|
|
await page.setViewport({width: 400, height: 300});
|
|
|
|
expect(await page.evaluate(() => window.innerWidth)).toBe(400);
|
|
|
|
}));
|
|
|
|
it('should support touch emulation', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/mobile.html');
|
2017-07-21 01:14:43 +00:00
|
|
|
expect(await page.evaluate(() => 'ontouchstart' in window)).toBe(false);
|
|
|
|
await page.setViewport(iPhone.viewport);
|
|
|
|
expect(await page.evaluate(() => 'ontouchstart' in window)).toBe(true);
|
2017-08-11 01:25:56 +00:00
|
|
|
expect(await page.evaluate(dispatchTouch)).toBe('Recieved touch');
|
2017-07-21 01:14:43 +00:00
|
|
|
await page.setViewport({width: 100, height: 100});
|
|
|
|
expect(await page.evaluate(() => 'ontouchstart' in window)).toBe(false);
|
2017-08-11 01:25:56 +00:00
|
|
|
|
|
|
|
function dispatchTouch() {
|
|
|
|
let fulfill;
|
2017-08-21 23:39:04 +00:00
|
|
|
const promise = new Promise(x => fulfill = x);
|
2017-08-11 01:25:56 +00:00
|
|
|
window.ontouchstart = function(e) {
|
|
|
|
fulfill('Recieved touch');
|
|
|
|
};
|
|
|
|
window.dispatchEvent(new Event('touchstart'));
|
|
|
|
|
|
|
|
fulfill('Did not recieve touch');
|
|
|
|
|
|
|
|
return promise;
|
|
|
|
}
|
2017-07-21 01:14:43 +00:00
|
|
|
}));
|
2017-08-11 20:59:23 +00:00
|
|
|
it('should be detectable by Modernizr', SX(async function(){
|
|
|
|
await page.goto(PREFIX + '/detect-touch.html');
|
|
|
|
expect(await page.evaluate(() => document.body.textContent.trim())).toBe('NO');
|
|
|
|
await page.setViewport(iPhone.viewport);
|
|
|
|
await page.goto(PREFIX + '/detect-touch.html');
|
|
|
|
expect(await page.evaluate(() => document.body.textContent.trim())).toBe('YES');
|
|
|
|
}));
|
2017-07-21 01:14:43 +00:00
|
|
|
it('should support landscape emulation', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/mobile.html');
|
2017-07-21 01:14:43 +00:00
|
|
|
expect(await page.evaluate(() => screen.orientation.type)).toBe('portrait-primary');
|
|
|
|
await page.setViewport(iPhoneLandscape.viewport);
|
|
|
|
expect(await page.evaluate(() => screen.orientation.type)).toBe('landscape-primary');
|
|
|
|
await page.setViewport({width: 100, height: 100});
|
|
|
|
expect(await page.evaluate(() => screen.orientation.type)).toBe('portrait-primary');
|
|
|
|
}));
|
2017-08-18 23:49:02 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Page.emulate', function() {
|
|
|
|
it('should work', SX(async function() {
|
2017-08-11 01:42:30 +00:00
|
|
|
await page.goto(PREFIX + '/mobile.html');
|
|
|
|
await page.emulate(iPhone);
|
|
|
|
expect(await page.evaluate(() => window.innerWidth)).toBe(375);
|
|
|
|
expect(await page.evaluate(() => navigator.userAgent)).toContain('Safari');
|
|
|
|
}));
|
2017-07-10 17:09:59 +00:00
|
|
|
});
|
|
|
|
|
2017-08-18 23:49:02 +00:00
|
|
|
describe('Page.emulateMedia', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
expect(await page.evaluate(() => window.matchMedia('screen').matches)).toBe(true);
|
|
|
|
expect(await page.evaluate(() => window.matchMedia('print').matches)).toBe(false);
|
|
|
|
await page.emulateMedia('print');
|
|
|
|
expect(await page.evaluate(() => window.matchMedia('screen').matches)).toBe(false);
|
|
|
|
expect(await page.evaluate(() => window.matchMedia('print').matches)).toBe(true);
|
|
|
|
await page.emulateMedia(null);
|
|
|
|
expect(await page.evaluate(() => window.matchMedia('screen').matches)).toBe(true);
|
|
|
|
expect(await page.evaluate(() => window.matchMedia('print').matches)).toBe(false);
|
|
|
|
}));
|
|
|
|
it('should throw in case of bad argument', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
await page.emulateMedia('bad').catch(e => error = e);
|
|
|
|
expect(error.message).toBe('Unsupported media type: bad');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-23 21:08:56 +00:00
|
|
|
describe('Page.setJavaScriptEnabled', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.setJavaScriptEnabled(false);
|
|
|
|
await page.goto('data:text/html, <script>var something = "forbidden"</script>');
|
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await page.evaluate('something').catch(e => error = e);
|
2017-08-23 21:08:56 +00:00
|
|
|
expect(error.message).toContain('something is not defined');
|
|
|
|
|
|
|
|
await page.setJavaScriptEnabled(true);
|
|
|
|
await page.goto('data:text/html, <script>var something = "forbidden"</script>');
|
|
|
|
expect(await page.evaluate('something')).toBe('forbidden');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-07-25 07:00:25 +00:00
|
|
|
describe('Page.evaluateOnNewDocument', function() {
|
2017-07-10 17:09:59 +00:00
|
|
|
it('should evaluate before anything else on the page', SX(async function() {
|
2017-07-25 07:00:25 +00:00
|
|
|
await page.evaluateOnNewDocument(function(){
|
2017-07-10 17:09:59 +00:00
|
|
|
window.injected = 123;
|
|
|
|
});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/tamperable.html');
|
2017-07-10 17:09:59 +00:00
|
|
|
expect(await page.evaluate(() => window.result)).toBe(123);
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-03 21:10:52 +00:00
|
|
|
// Printing to pdf is currently only supported in headless
|
|
|
|
(headless ? describe : xdescribe)('Page.pdf', function() {
|
|
|
|
it('should be able to save file', SX(async function() {
|
|
|
|
const outputFile = __dirname + '/assets/output.pdf';
|
2017-08-03 20:42:38 +00:00
|
|
|
await page.pdf({path: outputFile});
|
|
|
|
expect(fs.readFileSync(outputFile).byteLength).toBeGreaterThan(0);
|
2017-08-03 21:10:52 +00:00
|
|
|
fs.unlinkSync(outputFile);
|
|
|
|
}));
|
|
|
|
it('should default to printing in Letter format', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const pages = await getPDFPages(await page.pdf());
|
2017-08-03 21:10:52 +00:00
|
|
|
expect(pages.length).toBe(1);
|
|
|
|
expect(pages[0].width).toBeCloseTo(8.5, 2);
|
|
|
|
expect(pages[0].height).toBeCloseTo(11, 2);
|
|
|
|
}));
|
|
|
|
it('should support setting custom format', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const pages = await getPDFPages(await page.pdf({
|
2017-08-04 08:01:10 +00:00
|
|
|
format: 'a4'
|
2017-08-03 21:10:52 +00:00
|
|
|
}));
|
|
|
|
expect(pages.length).toBe(1);
|
|
|
|
expect(pages[0].width).toBeCloseTo(8.27, 1);
|
|
|
|
expect(pages[0].height).toBeCloseTo(11.7, 1);
|
|
|
|
}));
|
|
|
|
it('should support setting paper width and height', SX(async function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const pages = await getPDFPages(await page.pdf({
|
2017-08-03 21:10:52 +00:00
|
|
|
width: '10in',
|
|
|
|
height: '10in',
|
|
|
|
}));
|
|
|
|
expect(pages.length).toBe(1);
|
|
|
|
expect(pages[0].width).toBeCloseTo(10, 2);
|
|
|
|
expect(pages[0].height).toBeCloseTo(10, 2);
|
|
|
|
}));
|
|
|
|
it('should print multiple pages', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-03 21:10:52 +00:00
|
|
|
// Define width and height in CSS pixels.
|
|
|
|
const width = 50 * 5 + 1;
|
|
|
|
const height = 50 * 5 + 1;
|
2017-08-21 23:39:04 +00:00
|
|
|
const pages = await getPDFPages(await page.pdf({width, height}));
|
2017-08-03 21:10:52 +00:00
|
|
|
expect(pages.length).toBe(8);
|
|
|
|
expect(pages[0].width).toBeCloseTo(cssPixelsToInches(width), 2);
|
|
|
|
expect(pages[0].height).toBeCloseTo(cssPixelsToInches(height), 2);
|
|
|
|
}));
|
|
|
|
it('should support page ranges', SX(async function() {
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-03 21:10:52 +00:00
|
|
|
// Define width and height in CSS pixels.
|
|
|
|
const width = 50 * 5 + 1;
|
|
|
|
const height = 50 * 5 + 1;
|
2017-08-21 23:39:04 +00:00
|
|
|
const pages = await getPDFPages(await page.pdf({width, height, pageRanges: '1,4-7'}));
|
2017-08-03 21:10:52 +00:00
|
|
|
expect(pages.length).toBe(5);
|
|
|
|
}));
|
|
|
|
it('should throw if format is unknown', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
await getPDFPages(await page.pdf({
|
|
|
|
format: 'something'
|
|
|
|
}));
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
expect(error).toBeTruthy();
|
|
|
|
expect(error.message).toContain('Unknown paper format');
|
|
|
|
}));
|
|
|
|
it('should throw if units are unknown', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
try {
|
|
|
|
await getPDFPages(await page.pdf({
|
|
|
|
width: '10em',
|
|
|
|
height: '10em',
|
|
|
|
}));
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
expect(error).toBeTruthy();
|
|
|
|
expect(error.message).toContain('Failed to parse parameter value');
|
2017-07-10 17:09:59 +00:00
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Page.title', function() {
|
|
|
|
it('should return the page title', SX(async function(){
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/input/button.html');
|
2017-07-10 17:09:59 +00:00
|
|
|
expect(await page.title()).toBe('Button test');
|
|
|
|
}));
|
|
|
|
});
|
2017-07-18 01:56:56 +00:00
|
|
|
|
2017-07-19 05:10:38 +00:00
|
|
|
describe('Page.screenshot', function() {
|
|
|
|
it('should work', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const screenshot = await page.screenshot();
|
2017-07-19 05:10:38 +00:00
|
|
|
expect(screenshot).toBeGolden('screenshot-sanity.png');
|
|
|
|
}));
|
|
|
|
it('should clip rect', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const screenshot = await page.screenshot({
|
2017-07-19 05:10:38 +00:00
|
|
|
clip: {
|
|
|
|
x: 50,
|
|
|
|
y: 100,
|
|
|
|
width: 150,
|
|
|
|
height: 100
|
|
|
|
}
|
|
|
|
});
|
|
|
|
expect(screenshot).toBeGolden('screenshot-clip-rect.png');
|
|
|
|
}));
|
|
|
|
it('should work for offscreen clip', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const screenshot = await page.screenshot({
|
2017-07-19 05:10:38 +00:00
|
|
|
clip: {
|
|
|
|
x: 50,
|
|
|
|
y: 600,
|
|
|
|
width: 100,
|
|
|
|
height: 100
|
|
|
|
}
|
|
|
|
});
|
|
|
|
expect(screenshot).toBeGolden('screenshot-offscreen-clip.png');
|
|
|
|
}));
|
|
|
|
it('should run in parallel', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const promises = [];
|
2017-07-19 05:10:38 +00:00
|
|
|
for (let i = 0; i < 3; ++i) {
|
|
|
|
promises.push(page.screenshot({
|
|
|
|
clip: {
|
|
|
|
x: 50 * i,
|
|
|
|
y: 0,
|
|
|
|
width: 50,
|
|
|
|
height: 50
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
}
|
2017-08-21 23:39:04 +00:00
|
|
|
const screenshots = await Promise.all(promises);
|
2017-07-19 05:10:38 +00:00
|
|
|
expect(screenshots[1]).toBeGolden('grid-cell-1.png');
|
|
|
|
}));
|
|
|
|
it('should take fullPage screenshots', SX(async function() {
|
|
|
|
await page.setViewport({width: 500, height: 500});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-21 23:39:04 +00:00
|
|
|
const screenshot = await page.screenshot({
|
2017-07-19 05:10:38 +00:00
|
|
|
fullPage: true
|
|
|
|
});
|
|
|
|
expect(screenshot).toBeGolden('screenshot-grid-fullpage.png');
|
|
|
|
}));
|
|
|
|
it('should run in parallel in multiple pages', SX(async function() {
|
|
|
|
const N = 2;
|
2017-08-21 23:39:04 +00:00
|
|
|
const pages = await Promise.all(Array(N).fill(0).map(async() => {
|
|
|
|
const page = await browser.newPage();
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-07-19 05:10:38 +00:00
|
|
|
return page;
|
|
|
|
}));
|
2017-08-21 23:39:04 +00:00
|
|
|
const promises = [];
|
2017-07-19 05:10:38 +00:00
|
|
|
for (let i = 0; i < N; ++i)
|
|
|
|
promises.push(pages[i].screenshot({ clip: { x: 50 * i, y: 0, width: 50, height: 50 } }));
|
2017-08-21 23:39:04 +00:00
|
|
|
const screenshots = await Promise.all(promises);
|
2017-07-19 05:10:38 +00:00
|
|
|
for (let i = 0; i < N; ++i)
|
|
|
|
expect(screenshots[i]).toBeGolden(`grid-cell-${i}.png`);
|
|
|
|
await Promise.all(pages.map(page => page.close()));
|
|
|
|
}));
|
2017-08-18 04:11:39 +00:00
|
|
|
it('should allow transparency', SX(async function() {
|
|
|
|
await page.setViewport({ width: 100, height: 100 });
|
|
|
|
await page.goto(EMPTY_PAGE);
|
2017-08-22 21:18:07 +00:00
|
|
|
const screenshot = await page.screenshot({omitBackground: true});
|
2017-08-18 04:11:39 +00:00
|
|
|
expect(screenshot).toBeGolden('transparent.png');
|
|
|
|
}));
|
2017-07-19 05:10:38 +00:00
|
|
|
});
|
2017-08-02 17:45:11 +00:00
|
|
|
|
2017-09-25 09:23:34 +00:00
|
|
|
describe('Page.select', function() {
|
|
|
|
it('should select single option', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/select.html');
|
|
|
|
await page.select('select', 'blue');
|
|
|
|
expect(await page.evaluate(() => result.onInput)).toEqual(['blue']);
|
|
|
|
expect(await page.evaluate(() => result.onChange)).toEqual(['blue']);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should select multiple options', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/select.html');
|
|
|
|
await page.evaluate(() => makeMultiple());
|
|
|
|
await page.select('select', 'blue', 'green', 'red');
|
|
|
|
expect(await page.evaluate(() => result.onInput)).toEqual(['blue', 'green', 'red']);
|
|
|
|
expect(await page.evaluate(() => result.onChange)).toEqual(['blue', 'green', 'red']);
|
|
|
|
}));
|
|
|
|
|
2017-10-07 17:27:38 +00:00
|
|
|
it('should respect event bubbling', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/select.html');
|
|
|
|
await page.select('select', 'blue');
|
|
|
|
expect(await page.evaluate(() => result.onBubblingInput)).toEqual(['blue']);
|
|
|
|
expect(await page.evaluate(() => result.onBubblingChange)).toEqual(['blue']);
|
|
|
|
}));
|
|
|
|
|
2017-09-25 09:23:34 +00:00
|
|
|
it('should work with no options', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/select.html');
|
|
|
|
await page.evaluate(() => makeEmpty());
|
|
|
|
await page.select('select', '42');
|
|
|
|
expect(await page.evaluate(() => result.onInput)).toEqual([]);
|
|
|
|
expect(await page.evaluate(() => result.onChange)).toEqual([]);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should not select a non-existent option', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/input/select.html');
|
|
|
|
await page.select('select', '42');
|
|
|
|
expect(await page.evaluate(() => result.onInput)).toEqual([]);
|
|
|
|
expect(await page.evaluate(() => result.onChange)).toEqual([]);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should throw', SX(async function() {
|
|
|
|
let error = null;
|
|
|
|
await page.goto(PREFIX + '/input/select.html');
|
|
|
|
await page.select('body', '').catch(e => error = e);
|
|
|
|
expect(error.message).toContain('Element is not a <select> element.');
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
2017-08-02 17:45:11 +00:00
|
|
|
describe('Tracing', function() {
|
2017-08-21 23:39:04 +00:00
|
|
|
const outputFile = path.join(__dirname, 'assets', 'trace.json');
|
2017-08-02 17:45:11 +00:00
|
|
|
afterEach(function() {
|
|
|
|
fs.unlinkSync(outputFile);
|
|
|
|
});
|
|
|
|
it('should output a trace', SX(async function() {
|
2017-08-02 22:41:05 +00:00
|
|
|
await page.tracing.start({screenshots: true, path: outputFile});
|
2017-08-10 07:02:10 +00:00
|
|
|
await page.goto(PREFIX + '/grid.html');
|
2017-08-02 22:41:05 +00:00
|
|
|
await page.tracing.stop();
|
2017-08-02 17:45:11 +00:00
|
|
|
expect(fs.existsSync(outputFile)).toBe(true);
|
|
|
|
}));
|
|
|
|
it('should throw if tracing on two pages', SX(async function() {
|
2017-08-02 22:41:05 +00:00
|
|
|
await page.tracing.start({path: outputFile});
|
2017-08-21 23:39:04 +00:00
|
|
|
const newPage = await browser.newPage();
|
2017-08-02 17:45:11 +00:00
|
|
|
let error = null;
|
2017-09-13 19:06:57 +00:00
|
|
|
await newPage.tracing.start({path: outputFile}).catch(e => error = e);
|
2017-08-02 17:45:11 +00:00
|
|
|
await newPage.close();
|
|
|
|
expect(error).toBeTruthy();
|
2017-08-02 22:41:05 +00:00
|
|
|
await page.tracing.stop();
|
2017-08-02 17:45:11 +00:00
|
|
|
}));
|
|
|
|
});
|
2017-08-24 19:21:46 +00:00
|
|
|
|
|
|
|
describe('Cookies', function() {
|
|
|
|
afterEach(SX(async function(){
|
|
|
|
const cookies = await page.cookies(PREFIX + '/grid.html', CROSS_PROCESS_PREFIX);
|
|
|
|
for (const cookie of cookies)
|
|
|
|
await page.deleteCookie(cookie);
|
|
|
|
}));
|
|
|
|
it('should set and get cookies', SX(async function(){
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
expect(await page.cookies()).toEqual([]);
|
|
|
|
await page.evaluate(() => {
|
|
|
|
document.cookie = 'username=John Doe';
|
|
|
|
});
|
|
|
|
expect(await page.cookies()).toEqual([{
|
|
|
|
name: 'username',
|
|
|
|
value: 'John Doe',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/',
|
|
|
|
expires: 0,
|
|
|
|
size: 16,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
|
|
|
session: true }
|
|
|
|
]);
|
|
|
|
await page.setCookie({
|
|
|
|
name: 'password',
|
|
|
|
value: '123456'
|
|
|
|
});
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('username=John Doe; password=123456');
|
2017-09-14 00:30:25 +00:00
|
|
|
const cookies = await page.cookies();
|
|
|
|
expect(cookies.sort((a, b) => a.name.localeCompare(b.name))).toEqual([{
|
2017-08-24 19:21:46 +00:00
|
|
|
name: 'password',
|
|
|
|
value: '123456',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/',
|
|
|
|
expires: 0,
|
|
|
|
size: 14,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
|
|
|
session: true
|
|
|
|
}, {
|
|
|
|
name: 'username',
|
|
|
|
value: 'John Doe',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/',
|
|
|
|
expires: 0,
|
|
|
|
size: 16,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
|
|
|
session: true
|
|
|
|
}]);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should set a cookie with a path', SX(async function(){
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
await page.setCookie({
|
|
|
|
name: 'gridcookie',
|
|
|
|
value: 'GRID',
|
|
|
|
path: '/grid.html'
|
|
|
|
});
|
|
|
|
expect(await page.cookies()).toEqual([{
|
|
|
|
name: 'gridcookie',
|
|
|
|
value: 'GRID',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/grid.html',
|
|
|
|
expires: 0,
|
|
|
|
size: 14,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
|
|
|
session: true
|
|
|
|
}]);
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('gridcookie=GRID');
|
|
|
|
await page.goto(PREFIX + '/empty.html');
|
|
|
|
expect(await page.cookies()).toEqual([]);
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('');
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('gridcookie=GRID');
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('should delete a cookie', SX(async function(){
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
await page.setCookie({
|
|
|
|
name: 'cookie1',
|
|
|
|
value: '1'
|
|
|
|
}, {
|
|
|
|
name: 'cookie2',
|
|
|
|
value: '2'
|
|
|
|
}, {
|
|
|
|
name: 'cookie3',
|
|
|
|
value: '3'
|
|
|
|
});
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('cookie1=1; cookie2=2; cookie3=3');
|
|
|
|
await page.deleteCookie({name: 'cookie2'});
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('cookie1=1; cookie3=3');
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should set a cookie on a different domain', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
await page.setCookie({name: 'example-cookie', value: 'best', url: 'https://www.example.com'});
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('');
|
|
|
|
expect(await page.cookies()).toEqual([]);
|
|
|
|
expect(await page.cookies('https://www.example.com')).toEqual([{
|
|
|
|
name: 'example-cookie',
|
|
|
|
value: 'best',
|
|
|
|
domain: 'www.example.com',
|
|
|
|
path: '/',
|
|
|
|
expires: 0,
|
|
|
|
size: 18,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: true,
|
|
|
|
session: true
|
|
|
|
}]);
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should set cookies from a frame', SX(async function() {
|
|
|
|
await page.goto(PREFIX + '/grid.html');
|
|
|
|
await page.setCookie({name: 'localhost-cookie', value: 'best'});
|
|
|
|
await page.evaluate(src => {
|
|
|
|
let fulfill;
|
|
|
|
const promise = new Promise(x => fulfill = x);
|
|
|
|
const iframe = document.createElement('iframe');
|
|
|
|
document.body.appendChild(iframe);
|
|
|
|
iframe.onload = fulfill;
|
|
|
|
iframe.src = src;
|
|
|
|
return promise;
|
|
|
|
}, CROSS_PROCESS_PREFIX);
|
|
|
|
await page.setCookie({name: '127-cookie', value: 'worst', url: CROSS_PROCESS_PREFIX});
|
|
|
|
expect(await page.evaluate('document.cookie')).toBe('localhost-cookie=best');
|
|
|
|
expect(await page.frames()[1].evaluate('document.cookie')).toBe('127-cookie=worst');
|
|
|
|
|
|
|
|
expect(await page.cookies()).toEqual([{
|
|
|
|
name: 'localhost-cookie',
|
|
|
|
value: 'best',
|
|
|
|
domain: 'localhost',
|
|
|
|
path: '/',
|
|
|
|
expires: 0,
|
|
|
|
size: 20,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
|
|
|
session: true
|
|
|
|
}]);
|
|
|
|
|
|
|
|
expect(await page.cookies(CROSS_PROCESS_PREFIX)).toEqual([{
|
|
|
|
name: '127-cookie',
|
|
|
|
value: 'worst',
|
|
|
|
domain: '127.0.0.1',
|
|
|
|
path: '/',
|
|
|
|
expires: 0,
|
|
|
|
size: 15,
|
|
|
|
httpOnly: false,
|
|
|
|
secure: false,
|
|
|
|
session: true
|
|
|
|
}]);
|
|
|
|
|
|
|
|
}));
|
|
|
|
});
|
2017-05-12 23:36:37 +00:00
|
|
|
});
|
|
|
|
|
2017-07-27 23:16:37 +00:00
|
|
|
if (process.env.COVERAGE) {
|
2017-07-28 00:32:02 +00:00
|
|
|
describe('COVERAGE', function(){
|
2017-08-21 23:39:04 +00:00
|
|
|
const coverage = helper.publicAPICoverage();
|
|
|
|
const disabled = new Set();
|
2017-08-02 22:32:20 +00:00
|
|
|
if (!headless)
|
2017-07-27 23:16:37 +00:00
|
|
|
disabled.add('page.pdf');
|
|
|
|
|
2017-08-21 23:39:04 +00:00
|
|
|
for (const method of coverage.keys()) {
|
2017-07-28 18:45:05 +00:00
|
|
|
(disabled.has(method) ? xit : it)(`public api '${method}' should be called`, SX(async function(){
|
2017-07-27 23:27:00 +00:00
|
|
|
expect(coverage.get(method)).toBe(true);
|
2017-07-27 23:16:37 +00:00
|
|
|
}));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2017-07-17 08:57:37 +00:00
|
|
|
/**
|
|
|
|
* @param {!EventEmitter} emitter
|
|
|
|
* @param {string} eventName
|
|
|
|
* @param {number=} eventCount
|
|
|
|
* @return {!Promise}
|
|
|
|
*/
|
|
|
|
function waitForEvents(emitter, eventName, eventCount = 1) {
|
|
|
|
let fulfill;
|
2017-08-21 23:39:04 +00:00
|
|
|
const promise = new Promise(x => fulfill = x);
|
2017-07-17 08:57:37 +00:00
|
|
|
emitter.on(eventName, onEvent);
|
|
|
|
return promise;
|
|
|
|
|
|
|
|
function onEvent() {
|
|
|
|
--eventCount;
|
|
|
|
if (eventCount)
|
|
|
|
return;
|
|
|
|
emitter.removeListener(eventName, onEvent);
|
|
|
|
fulfill();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 21:10:52 +00:00
|
|
|
/**
|
|
|
|
* @param {!Buffer} pdfBuffer
|
|
|
|
* @return {!Promise<!Array<!Object>>}
|
|
|
|
*/
|
|
|
|
async function getPDFPages(pdfBuffer) {
|
|
|
|
const PDFJS = require('pdfjs-dist');
|
|
|
|
PDFJS.disableWorker = true;
|
|
|
|
const data = new Uint8Array(pdfBuffer);
|
|
|
|
const doc = await PDFJS.getDocument(data);
|
2017-08-21 23:39:04 +00:00
|
|
|
const pages = [];
|
2017-08-03 21:10:52 +00:00
|
|
|
for (let i = 0; i < doc.numPages; ++i) {
|
2017-08-21 23:39:04 +00:00
|
|
|
const page = await doc.getPage(i + 1);
|
|
|
|
const viewport = page.getViewport(1);
|
2017-08-03 21:10:52 +00:00
|
|
|
// Viewport width and height is in PDF points, which is
|
|
|
|
// 1/72 of an inch.
|
|
|
|
pages.push({
|
|
|
|
width: viewport.width / 72,
|
|
|
|
height: viewport.height / 72,
|
|
|
|
});
|
|
|
|
page.cleanup();
|
|
|
|
}
|
|
|
|
doc.cleanup();
|
|
|
|
return pages;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param {number} px
|
|
|
|
* @return {number}
|
|
|
|
*/
|
|
|
|
function cssPixelsToInches(px) {
|
|
|
|
return px / 96;
|
|
|
|
}
|
|
|
|
|
2017-05-12 23:36:37 +00:00
|
|
|
// Since Jasmine doesn't like async functions, they should be wrapped
|
|
|
|
// in a SX function.
|
|
|
|
function SX(fun) {
|
2017-06-21 20:51:06 +00:00
|
|
|
return done => Promise.resolve(fun()).then(done).catch(done.fail);
|
2017-05-12 23:36:37 +00:00
|
|
|
}
|