playwright
Advanced tools
Comparing version 0.11.0 to 0.11.1-next.1582931970136
@@ -16,2 +16,8 @@ /** | ||
*/ | ||
module.exports = require('playwright-core'); | ||
const {Playwright} = require('playwright-core/lib/server/playwright.js'); | ||
module.exports = new Playwright({ | ||
downloadPath: __dirname, | ||
browsers: ['webkit', 'chromium', 'firefox'], | ||
}); | ||
{ | ||
"name": "playwright", | ||
"version": "0.11.0", | ||
"version": "0.11.1-next.1582931970136", | ||
"description": "A high-level API to automate web browsers", | ||
@@ -15,4 +15,4 @@ "repository": "github:Microsoft/playwright", | ||
"dependencies": { | ||
"playwright-core": "=0.11.0" | ||
"playwright-core": "=0.11.1-next.1582931970136" | ||
} | ||
} |
# Playwright | ||
[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) [![Chromium version](https://img.shields.io/badge/chromium-81.0.4044-blue.svg)](https://www.chromium.org/Home) [![Firefox version](https://img.shields.io/badge/firefox-73.0b3-blue.svg)](https://www.mozilla.org/en-US/firefox/new/) [![WebKit version](https://img.shields.io/badge/webkit-13.0.4-blue.svg)](https://webkit.org/) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) | ||
[![npm version](https://img.shields.io/npm/v/playwright.svg?style=flat)](https://www.npmjs.com/package/playwright) <!-- GEN:chromium-version-badge-if-release -->[![Chromium version](https://img.shields.io/badge/chromium-82.0.4057.0-blue.svg?logo=google-chrome)](https://www.chromium.org/Home)<!-- GEN:stop --> <!-- GEN:firefox-version-badge-if-release -->[![Firefox version](https://img.shields.io/badge/firefox-73.0b13-blue.svg?logo=mozilla-firefox)](https://www.mozilla.org/en-US/firefox/new/)<!-- GEN:stop --> [![WebKit version](https://img.shields.io/badge/webkit-13.0.4-blue.svg?logo=safari)](https://webkit.org/) [![Join Slack](https://img.shields.io/badge/join-slack-infomational)](https://join.slack.com/t/playwright/shared_invite/enQtOTEyMTUxMzgxMjIwLThjMDUxZmIyNTRiMTJjNjIyMzdmZDA3MTQxZWUwZTFjZjQwNGYxZGM5MzRmNzZlMWI5ZWUyOTkzMjE5Njg1NDg) | ||
###### [API](https://github.com/microsoft/playwright/blob/master/docs/api.md) | [FAQ](#faq) | [Contributing](#contributing) | ||
###### [API](https://github.com/microsoft/playwright/blob/v0.11.1/docs/api.md) | [Changelog](https://github.com/microsoft/playwright/releases) | [FAQ](#faq) | [Contributing](#contributing) | ||
@@ -11,5 +11,5 @@ | ||
| ---: | :---: | :---: | :---: | :---: | | ||
| Chromium| 81.0.4044 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||
| Chromium| <!-- GEN:chromium-version-if-release-->82.0.4057.0<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||
| WebKit | 13.0.4 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||
| Firefox |73.0b3 | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||
| Firefox | <!-- GEN:firefox-version-if-release -->73.0b13<!-- GEN:stop --> | :white_check_mark: | :white_check_mark: | :white_check_mark: | | ||
- Headless is supported for all the browsers on all platforms. | ||
@@ -45,4 +45,4 @@ | ||
const context = await browser.newContext(); | ||
const page = await context.newPage('http://whatsmyuseragent.org/'); | ||
const page = await context.newPage(); | ||
await page.goto('http://whatsmyuseragent.org/'); | ||
await page.screenshot({ path: `example-${browserType}.png` }); | ||
@@ -70,4 +70,4 @@ await browser.close(); | ||
}); | ||
const page = await context.newPage('https://maps.google.com'); | ||
const page = await context.newPage(); | ||
await page.goto('https://maps.google.com'); | ||
await page.click('text="Your location"'); | ||
@@ -94,4 +94,4 @@ await page.waitForRequest(/.*preview\/pwa/); | ||
}); | ||
const page = await context.newPage('https://maps.google.com'); | ||
const page = await context.newPage(); | ||
await page.goto('https://maps.google.com'); | ||
await page.click('text="Your location"'); | ||
@@ -115,3 +115,2 @@ await page.waitForRequest(/.*pwa\/net.js.*/); | ||
const page = await context.newPage(); | ||
await page.goto('https://www.example.com/'); | ||
@@ -165,9 +164,11 @@ const dimensions = await page.evaluate(() => { | ||
Playwright **does not patch the rendering engines**. It either uses stock versions of the browsers (Chromium) or extends remote debugging protocols of the respective browsers (WebKit, Firefox) for better automation. There are no changes to the actual rendering engines, network stacks, etc. Our browsers are as pure as they can be. | ||
- *Chromium*: Playwright uses upstream versions of Chromium. When we need changes in the browser, they go into the browser directly and then we roll our dependency to that version of Chromium. As of today, we update Chromium as needed or at least once a month. We plan to synchronize our npm release cycle with the Chromium stable channel cadence. | ||
- *WebKit*: Playwright makes a number of modifications to `WebCore` and `WebKit2` in order to extend WebKit's remote debugging capabilities and support the full set of Playwright APIs. It also modifies the `Minibrowser` embedders to allow headless operation and headful debugging on all platforms. We use WebKit2 in a modern process isolation mode, enable mobile viewport, touch and geolocation on non-iOS platforms, etc. etc. | ||
- *WebKit*: Playwright extends `WebKit`'s remote debugging protocol to expose additional capabilities to the driver. There are no other changes to the rendering engine, it is pure `WebCore` in `WebKit2` engine. We strip debugging features from the WebKit's `Minibrowser` embedder and make it work headlessly. We use `WebKit2` in a modern process isolation mode, enable mobile viewport, touch and geolocation on non-iOS platforms to be as close to WebKit on non-iOS as one can be. | ||
We'd like to switch to the upstream-first mode of operation, so we will be offering all of the WebKit patches for review upstream. Until then, they can be found in the `browser_patches/webkit` folder. | ||
We continuously upload our patches to WebKit for upstream review and would like to switch to the upstream-first mode of operation once we land most critical changes. Before new extensions to the remote debugging hit upstream they can be found in the `browser_patches/webkit` folder. | ||
- *Firefox*: Playwright makes a number of modifications to Firefox as well. Those are adding support for content script debugging, workers, CSP, emulation, network interception, etc. etc. | ||
- *Firefox*: Playwright makes a number of modifications to Firefox's debugging channel as well. Same as above, no changes to the rendering engine itself. Those are adding support for content script debugging, workers, CSP, emulation, network interception, etc. etc. | ||
@@ -188,2 +189,3 @@ Similarly to WebKit, we'd like to offer all of those for review upstream, for now they can be found in the `browser_patches/firefox` folder. | ||
* [API documentation](https://github.com/microsoft/playwright/blob/master/docs/api.md) | ||
* [API documentation](docs/api.md) | ||
* [Community showcase](docs/showcase.md) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14156
42
185