mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
feat(chromium): roll to 07/29 (#3207)
This commit is contained in:
parent
bdfde5cd5c
commit
a700a7a9a8
@ -1,6 +1,6 @@
|
|||||||
# 🎭 Playwright
|
# 🎭 Playwright
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/playwright) [](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> [](https://webkit.org/)
|
[](https://www.npmjs.com/package/playwright) [](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) <!-- GEN:chromium-version-badge -->[](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge -->[](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> [](https://webkit.org/)
|
||||||
|
|
||||||
##### [Docs](docs/README.md) | [API reference](docs/api.md) | [Changelog](https://github.com/microsoft/playwright/releases)
|
##### [Docs](docs/README.md) | [API reference](docs/api.md) | [Changelog](https://github.com/microsoft/playwright/releases)
|
||||||
|
|
||||||
@ -8,7 +8,7 @@ Playwright is a Node.js library to automate [Chromium](https://www.chromium.org/
|
|||||||
|
|
||||||
| | Linux | macOS | Windows |
|
| | Linux | macOS | Windows |
|
||||||
| :--- | :---: | :---: | :---: |
|
| :--- | :---: | :---: | :---: |
|
||||||
| Chromium <!-- GEN:chromium-version -->86.0.4211.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Chromium <!-- GEN:chromium-version -->86.0.4217.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| WebKit 14.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| WebKit 14.0 | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
| Firefox <!-- GEN:firefox-version -->78.0b5<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
| Firefox <!-- GEN:firefox-version -->78.0b5<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: |
|
||||||
|
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"browsers": [
|
"browsers": [
|
||||||
{
|
{
|
||||||
"name": "chromium",
|
"name": "chromium",
|
||||||
"revision": "791201",
|
"revision": "792639",
|
||||||
"download": true
|
"download": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@ -7816,7 +7816,9 @@ detailed cookie information in the `cookies` field.
|
|||||||
*/
|
*/
|
||||||
export type getCookiesParameters = {
|
export type getCookiesParameters = {
|
||||||
/**
|
/**
|
||||||
* The list of URLs for which applicable cookies will be fetched
|
* The list of URLs for which applicable cookies will be fetched.
|
||||||
|
If not specified, it's assumed to be set to the list containing
|
||||||
|
the URLs of the page and all of its subframes.
|
||||||
*/
|
*/
|
||||||
urls?: string[];
|
urls?: string[];
|
||||||
}
|
}
|
||||||
@ -12758,6 +12760,10 @@ variables as its properties.
|
|||||||
* The language of the script.
|
* The language of the script.
|
||||||
*/
|
*/
|
||||||
scriptLanguage?: Debugger.ScriptLanguage;
|
scriptLanguage?: Debugger.ScriptLanguage;
|
||||||
|
/**
|
||||||
|
* The name the embedder supplied for this script.
|
||||||
|
*/
|
||||||
|
embedderName?: string;
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Fired when virtual machine parses script. This event is also fired for all known and uncollected
|
* Fired when virtual machine parses script. This event is also fired for all known and uncollected
|
||||||
@ -12836,6 +12842,10 @@ scripts upon enabling debugger.
|
|||||||
* If the scriptLanguage is WebASsembly, the source of debug symbols for the module.
|
* If the scriptLanguage is WebASsembly, the source of debug symbols for the module.
|
||||||
*/
|
*/
|
||||||
debugSymbols?: Debugger.DebugSymbols;
|
debugSymbols?: Debugger.DebugSymbols;
|
||||||
|
/**
|
||||||
|
* The name the embedder supplied for this script.
|
||||||
|
*/
|
||||||
|
embedderName?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -27,8 +27,7 @@ describe('BrowserContext({viewport})', function() {
|
|||||||
await page.setViewportSize({width: 123, height: 456});
|
await page.setViewportSize({width: 123, height: 456});
|
||||||
await utils.verifyViewport(page, 123, 456);
|
await utils.verifyViewport(page, 123, 456);
|
||||||
});
|
});
|
||||||
// TODO: enable in Chromium after http://crrev.com/c/2321409 is landed and rolled.
|
it('should return correct outerWidth and outerHeight', async({page}) => {
|
||||||
it.fail(CHROMIUM && HEADLESS && MAC)('should return correct outerWidth and outerHeight', async({page}) => {
|
|
||||||
const size = await page.evaluate(() => {
|
const size = await page.evaluate(() => {
|
||||||
return {
|
return {
|
||||||
innerWidth: window.innerWidth,
|
innerWidth: window.innerWidth,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user