2018-05-10 20:26:08 +00:00
|
|
|
/**
|
|
|
|
* Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-06-23 05:18:46 +00:00
|
|
|
import expect from 'expect';
|
2022-10-06 14:21:24 +00:00
|
|
|
import {TimeoutError} from 'puppeteer';
|
2023-02-15 23:09:31 +00:00
|
|
|
|
2023-07-03 12:01:29 +00:00
|
|
|
import {getTestState, setupTestBrowserHooks} from './mocha-utils.js';
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
import {waitEvent} from './utils.js';
|
2018-05-10 20:26:08 +00:00
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
describe('BrowserContext', function () {
|
2023-07-03 12:01:29 +00:00
|
|
|
setupTestBrowserHooks();
|
|
|
|
|
2020-06-12 13:55:51 +00:00
|
|
|
it('should have default context', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser} = await getTestState({
|
|
|
|
skipContextCreation: true,
|
|
|
|
});
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(1);
|
2022-06-15 10:09:22 +00:00
|
|
|
const defaultContext = browser.browserContexts()[0]!;
|
|
|
|
expect(defaultContext!.isIncognito()).toBe(false);
|
|
|
|
let error!: Error;
|
2022-06-22 13:25:44 +00:00
|
|
|
await defaultContext!.close().catch(error_ => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return (error = error_);
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
expect(browser.defaultBrowserContext()).toBe(defaultContext);
|
|
|
|
expect(error.message).toContain('cannot be closed');
|
|
|
|
});
|
2020-06-12 13:55:51 +00:00
|
|
|
it('should create new incognito context', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser} = await getTestState({
|
|
|
|
skipContextCreation: true,
|
|
|
|
});
|
2018-05-10 20:26:08 +00:00
|
|
|
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(1);
|
2020-04-09 05:56:25 +00:00
|
|
|
const context = await browser.createIncognitoBrowserContext();
|
|
|
|
expect(context.isIncognito()).toBe(true);
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(2);
|
2020-04-09 05:56:25 +00:00
|
|
|
expect(browser.browserContexts().indexOf(context) !== -1).toBe(true);
|
|
|
|
await context.close();
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(1);
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|
2020-06-12 13:55:51 +00:00
|
|
|
it('should close all belonging targets once closing context', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser} = await getTestState({
|
|
|
|
skipContextCreation: true,
|
|
|
|
});
|
2018-05-10 20:26:08 +00:00
|
|
|
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(await browser.pages()).toHaveLength(1);
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2020-06-12 13:55:51 +00:00
|
|
|
const context = await browser.createIncognitoBrowserContext();
|
|
|
|
await context.newPage();
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(await browser.pages()).toHaveLength(2);
|
|
|
|
expect(await context.pages()).toHaveLength(1);
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2020-06-12 13:55:51 +00:00
|
|
|
await context.close();
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(await browser.pages()).toHaveLength(1);
|
2020-06-12 13:55:51 +00:00
|
|
|
});
|
2022-09-08 10:32:39 +00:00
|
|
|
it('window.open should use parent tab context', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser, server, page, context} = await getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
|
|
|
const [popupTarget] = await Promise.all([
|
feat!: type inference for evaluation types (#8547)
This PR greatly improves the types within Puppeteer:
- **Almost everything** is auto-deduced.
- Parameters don't need to be specified in the function. They are deduced from the spread.
- Return types don't need to be specified. They are deduced from the function. (More on this below)
- Selections based on tag names correctly deduce element type, similar to TypeScript's mechanism for `getElementByTagName`.
- [**BREAKING CHANGE**] We've removed the ability to declare return types in type arguments for the following reasons:
1. Setting them will indubitably break auto-deduction.
2. You can just use `as ...` in TypeScript to coerce the correct type (given it makes sense).
- [**BREAKING CHANGE**] `waitFor` is officially gone.
To migrate to these changes, there are only four things you may need to change:
- If you set a return type using the `ReturnType` type parameter, remove it and use `as ...` and `HandleFor` (if necessary).
⛔ `evaluate<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluate(a, b) => {...}, a, b)) as ReturnType`
⛔ `evaluateHandle<ReturnType>(a: number, b: number) => {...}, a, b)`
✅ `(await evaluateHandle(a, b) => {...}, a, b)) as HandleFor<ReturnType>`
- If you set any type parameters in the *parameters* of an evaluation function, remove them.
⛔ `evaluate(a: number, b: number) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
- If you set any type parameters in the method's declaration, remove them.
⛔ `evaluate<(a: number, b: number) => void>((a, b) => {...}, a, b)`
✅ `evaluate(a, b) => {...}, a, b)`
2022-06-23 09:29:46 +00:00
|
|
|
waitEvent(browser, 'targetcreated'),
|
|
|
|
page.evaluate(url => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return window.open(url);
|
|
|
|
}, server.EMPTY_PAGE),
|
2020-04-09 05:56:25 +00:00
|
|
|
]);
|
|
|
|
expect(popupTarget.browserContext()).toBe(context);
|
|
|
|
});
|
2022-09-08 10:32:39 +00:00
|
|
|
it('should fire target events', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {server, context} = await getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2022-06-15 10:09:22 +00:00
|
|
|
const events: any[] = [];
|
2022-06-22 13:25:44 +00:00
|
|
|
context.on('targetcreated', target => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return events.push('CREATED: ' + target.url());
|
|
|
|
});
|
2022-06-22 13:25:44 +00:00
|
|
|
context.on('targetchanged', target => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return events.push('CHANGED: ' + target.url());
|
|
|
|
});
|
2022-06-22 13:25:44 +00:00
|
|
|
context.on('targetdestroyed', target => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return events.push('DESTROYED: ' + target.url());
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
const page = await context.newPage();
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
|
|
|
await page.close();
|
|
|
|
expect(events).toEqual([
|
|
|
|
'CREATED: about:blank',
|
|
|
|
`CHANGED: ${server.EMPTY_PAGE}`,
|
2020-05-07 10:54:55 +00:00
|
|
|
`DESTROYED: ${server.EMPTY_PAGE}`,
|
2020-04-09 05:56:25 +00:00
|
|
|
]);
|
|
|
|
});
|
2022-09-08 10:32:39 +00:00
|
|
|
it('should wait for a target', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {server, context} = await getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
let resolved = false;
|
2020-12-07 07:18:32 +00:00
|
|
|
|
2022-06-22 13:25:44 +00:00
|
|
|
const targetPromise = context.waitForTarget(target => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return target.url() === server.EMPTY_PAGE;
|
|
|
|
});
|
2020-12-07 07:18:32 +00:00
|
|
|
targetPromise
|
2022-06-15 10:09:22 +00:00
|
|
|
.then(() => {
|
|
|
|
return (resolved = true);
|
|
|
|
})
|
2022-06-22 13:25:44 +00:00
|
|
|
.catch(error => {
|
2020-12-07 07:18:32 +00:00
|
|
|
resolved = true;
|
2022-10-06 14:21:24 +00:00
|
|
|
if (error instanceof TimeoutError) {
|
2020-12-07 07:18:32 +00:00
|
|
|
console.error(error);
|
2022-06-14 11:55:35 +00:00
|
|
|
} else {
|
|
|
|
throw error;
|
|
|
|
}
|
2020-12-07 07:18:32 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
const page = await context.newPage();
|
|
|
|
expect(resolved).toBe(false);
|
|
|
|
await page.goto(server.EMPTY_PAGE);
|
2020-12-07 07:18:32 +00:00
|
|
|
try {
|
|
|
|
const target = await targetPromise;
|
|
|
|
expect(await target.page()).toBe(page);
|
|
|
|
} catch (error) {
|
2022-10-06 14:21:24 +00:00
|
|
|
if (error instanceof TimeoutError) {
|
2020-12-07 07:18:32 +00:00
|
|
|
console.error(error);
|
2022-06-14 11:55:35 +00:00
|
|
|
} else {
|
|
|
|
throw error;
|
|
|
|
}
|
2020-12-07 07:18:32 +00:00
|
|
|
}
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|
|
|
|
|
2020-05-07 10:54:55 +00:00
|
|
|
it('should timeout waiting for a non-existent target', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser, server} = await getTestState();
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
const context = await browser.createIncognitoBrowserContext();
|
2020-05-07 10:54:55 +00:00
|
|
|
const error = await context
|
2022-06-15 10:09:22 +00:00
|
|
|
.waitForTarget(
|
2022-06-22 13:25:44 +00:00
|
|
|
target => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return target.url() === server.EMPTY_PAGE;
|
|
|
|
},
|
|
|
|
{
|
|
|
|
timeout: 1,
|
|
|
|
}
|
|
|
|
)
|
2022-06-22 13:25:44 +00:00
|
|
|
.catch(error_ => {
|
2022-06-15 10:09:22 +00:00
|
|
|
return error_;
|
|
|
|
});
|
2022-10-06 14:21:24 +00:00
|
|
|
expect(error).toBeInstanceOf(TimeoutError);
|
2020-04-09 05:56:25 +00:00
|
|
|
await context.close();
|
|
|
|
});
|
|
|
|
|
2022-09-08 10:32:39 +00:00
|
|
|
it('should isolate localStorage and cookies', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser, server} = await getTestState({
|
|
|
|
skipContextCreation: true,
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
// Create two incognito contexts.
|
|
|
|
const context1 = await browser.createIncognitoBrowserContext();
|
|
|
|
const context2 = await browser.createIncognitoBrowserContext();
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(context1.targets()).toHaveLength(0);
|
|
|
|
expect(context2.targets()).toHaveLength(0);
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
// Create a page in first incognito context.
|
|
|
|
const page1 = await context1.newPage();
|
|
|
|
await page1.goto(server.EMPTY_PAGE);
|
|
|
|
await page1.evaluate(() => {
|
|
|
|
localStorage.setItem('name', 'page1');
|
|
|
|
document.cookie = 'name=page1';
|
2018-10-09 21:16:53 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(context1.targets()).toHaveLength(1);
|
|
|
|
expect(context2.targets()).toHaveLength(0);
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
// Create a page in second incognito context.
|
|
|
|
const page2 = await context2.newPage();
|
|
|
|
await page2.goto(server.EMPTY_PAGE);
|
|
|
|
await page2.evaluate(() => {
|
|
|
|
localStorage.setItem('name', 'page2');
|
|
|
|
document.cookie = 'name=page2';
|
2018-05-10 20:26:08 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(context1.targets()).toHaveLength(1);
|
|
|
|
expect(context1.targets()[0]).toBe(page1.target());
|
|
|
|
expect(context2.targets()).toHaveLength(1);
|
|
|
|
expect(context2.targets()[0]).toBe(page2.target());
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
// Make sure pages don't share localstorage or cookies.
|
2022-06-15 10:09:22 +00:00
|
|
|
expect(
|
|
|
|
await page1.evaluate(() => {
|
|
|
|
return localStorage.getItem('name');
|
|
|
|
})
|
|
|
|
).toBe('page1');
|
|
|
|
expect(
|
|
|
|
await page1.evaluate(() => {
|
|
|
|
return document.cookie;
|
|
|
|
})
|
|
|
|
).toBe('name=page1');
|
|
|
|
expect(
|
|
|
|
await page2.evaluate(() => {
|
|
|
|
return localStorage.getItem('name');
|
|
|
|
})
|
|
|
|
).toBe('page2');
|
|
|
|
expect(
|
|
|
|
await page2.evaluate(() => {
|
|
|
|
return document.cookie;
|
|
|
|
})
|
|
|
|
).toBe('name=page2');
|
2020-04-09 05:56:25 +00:00
|
|
|
|
|
|
|
// Cleanup contexts.
|
2020-05-07 10:54:55 +00:00
|
|
|
await Promise.all([context1.close(), context2.close()]);
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(1);
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|
|
|
|
|
2022-09-08 10:32:39 +00:00
|
|
|
it('should work across sessions', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser, puppeteer} = await getTestState({
|
|
|
|
skipContextCreation: true,
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(1);
|
2020-04-09 05:56:25 +00:00
|
|
|
const context = await browser.createIncognitoBrowserContext();
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(2);
|
2020-04-09 05:56:25 +00:00
|
|
|
const remoteBrowser = await puppeteer.connect({
|
2020-05-07 10:54:55 +00:00
|
|
|
browserWSEndpoint: browser.wsEndpoint(),
|
2018-05-10 20:26:08 +00:00
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
const contexts = remoteBrowser.browserContexts();
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(contexts).toHaveLength(2);
|
2020-04-09 05:56:25 +00:00
|
|
|
remoteBrowser.disconnect();
|
|
|
|
await context.close();
|
2018-05-10 20:26:08 +00:00
|
|
|
});
|
2022-10-19 08:30:57 +00:00
|
|
|
|
|
|
|
it('should provide a context id', async () => {
|
2023-06-21 19:41:09 +00:00
|
|
|
const {browser} = await getTestState({
|
|
|
|
skipContextCreation: true,
|
|
|
|
});
|
2022-10-19 08:30:57 +00:00
|
|
|
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(1);
|
2022-10-19 08:30:57 +00:00
|
|
|
expect(browser.browserContexts()[0]!.id).toBeUndefined();
|
|
|
|
|
|
|
|
const context = await browser.createIncognitoBrowserContext();
|
2023-04-25 13:02:25 +00:00
|
|
|
expect(browser.browserContexts()).toHaveLength(2);
|
2022-10-19 08:30:57 +00:00
|
|
|
expect(browser.browserContexts()[1]!.id).toBeDefined();
|
|
|
|
await context.close();
|
|
|
|
});
|
2020-04-09 05:56:25 +00:00
|
|
|
});
|