mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
Update README.md
This commit is contained in:
parent
00057df92b
commit
c6d51c3f0e
39
README.md
39
README.md
@ -2,15 +2,9 @@
|
||||
|
||||
[](https://www.npmjs.com/package/playwright)
|
||||
|
||||
| Build | Status |
|
||||
|-------|--------|
|
||||
| Chromium | [](https://github.com/microsoft/playwright/actions?query=workflow%3A%22Chromium+Tests%22) |
|
||||
| Firefox | [](https://github.com/microsoft/playwright/actions?query=workflow%3A%22Firefox+Tests%22) |
|
||||
| WebKit | [](https://github.com/microsoft/playwright/actions?query=workflow%3A%22WebKit+Tests%22) |
|
||||
###### [API](https://github.com/microsoft/playwright/blob/master/docs/api.md) | [FAQ](#faq) | [Contributing](#contributing)
|
||||
|
||||
Playwright is a Node library to automate the Chromium, Webkit and Firefox browsers.
|
||||
|
||||
## Getting started
|
||||
Playwright is a Node library to automate the [Chromium](https://www.chromium.org/Home), [WebKit](https://webkit.org/) and [Firefox](https://www.mozilla.org/en-US/firefox/new/) browsers. Playwright is focused on enabling **cross-browser** web automation platform that is **ever-green**, **capable**, **reliable** and **fast**. Our primary goal with Playwright is to improve automated UI testing by eliminating flakiness, improving the speed of execution and offering insights into the browser operation. Playwright runs headless versions of these browsers by default, but can be configured to run the full versions.
|
||||
|
||||
### Installation
|
||||
|
||||
@ -18,6 +12,8 @@ Playwright is a Node library to automate the Chromium, Webkit and Firefox browse
|
||||
npm i playwright
|
||||
```
|
||||
|
||||
This installs Playwright along with its dependencies and the browser binaries. Browser binaries are about 50-100MB each, so expect the installation network traffic to be substantial.
|
||||
|
||||
### Usage
|
||||
|
||||
Playwright can be used to create a browser instance, open pages, and then manipulate them. See [API docs](https://github.com/microsoft/playwright/blob/master/docs/api.md) for a comprehensive list.
|
||||
@ -69,29 +65,34 @@ const pw = require('playwright');
|
||||
})();
|
||||
```
|
||||
|
||||
## Credits
|
||||
## Limitations
|
||||
|
||||
Playwright has code derived from the [Puppeteer](https://github.com/puppeteer/puppeteer) project, available under the [Apache 2.0](https://github.com/puppeteer/puppeteer/blob/master/LICENSE) license.
|
||||
WebKit support on Windows is based on the [WSL](https://docs.microsoft.com/en-us/windows/wsl/about) / [Docker](https://www.docker.com/) containers. We are working on the [WinCairo](https://trac.webkit.org/wiki/BuildingCairoOnWindows)-based version of the browser, but it'll be available later. Stay tuned!
|
||||
|
||||
## FAQs
|
||||
## Contributing to Playwright
|
||||
|
||||
**Q: What are the goals of Playwright?**
|
||||
Check out our [contributing guide](https://github.com/microsoft/playwright/blob/master/CONTRIBUTING.md).
|
||||
|
||||
Playwright is focused to enable **cross-browser** web automation scripts that are **reliable and fast**. Our primary goal with Playwright is to improve automated UI testing by eliminating flakiness and improving the speed of execution.
|
||||
## FAQ
|
||||
|
||||
**Q: How does Playwright compare against Puppeteer?**
|
||||
**Q: How does Playwright relate to [Puppeteer](https://github.com/puppeteer/puppeteer)?**
|
||||
|
||||
[WIP]
|
||||
We are the same team that built Puppeteer. Puppeteer proved that there is a lot of interest in the new generation of ever-green, capable and reliable automation drivers. With Playwright, we'd like to take it one step further and offer the same functionality for **all** the popular rendering engines. We'd like to see Playwright vendor-neutral and shared goverened.
|
||||
|
||||
Puppeteer is a Node library to automate the Chromium browser through the Chrome DevTools Protocol. It enables fast, rich and reliable automation scripts for Chromium.
|
||||
**Q: What about the [WebDriver](https://www.w3.org/TR/webdriver/)?**
|
||||
|
||||
Playwright introduces similar bi-directional protocols for the Firefox and WebKit browsers, extending Puppeteer's capabilities to enable cross-browser automation.
|
||||
- [*api*] WebDriver standardizes a wire format rather than a library API. SDKs for WebDriver are available in all possible languages and Playwright is currently limited to JavaScript and everything generated into JavaScript.
|
||||
|
||||
- [*capabilities*] With Playwright, we aim at providing a more capable driver, including support for [mobile viewports](https://developer.mozilla.org/en-US/docs/Mozilla/Mobile/Viewport_meta_tag), [touch](https://developer.mozilla.org/en-US/docs/Web/API/Touch_events/Using_Touch_Events), [web](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) & [service workers](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API), [geolocation](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API), [csp](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP), [cookie policies](https://web.dev/samesite-cookies-explained/), [accessibility](https://developer.mozilla.org/en-US/docs/Web/Accessibility), etc.
|
||||
|
||||
- [*reliability*] Playwright's communication with all the browsers is event-driven, based on the [full-duplex](https://en.wikipedia.org/wiki/Duplex_(telecommunications)) transport, which eliminates the need for polling. (Polling is one of the greatest sources of test flakiness).
|
||||
|
||||
**Q: Is Playwright ready?**
|
||||
|
||||
Playwright is actively developed as we get to feature parity across Chromium, Firefox and WebKit. Progress on each browser can be tracked on the [Is Playwright Ready?](https://aslushnikov.github.io/isplaywrightready/) page, which shows test coverage per browser.
|
||||
Playwright is ready for your feedback. It respects [semver](https://semver.org/), so please expect some API breakages as we release 1.0. All we can promise is that those breakages are going to be based on your feedback with the sole purpose of making our APIs better.
|
||||
|
||||
Playwright is being actively developed as we get to the feature parity across Chromium, Firefox and WebKit. Progress on each browser can be tracked on the [Is Playwright Ready?](https://aslushnikov.github.io/isplaywrightready/) page, which shows currently failing tests per browser.
|
||||
|
||||
## Resources
|
||||
|
||||
* [API documentation](https://github.com/microsoft/playwright/blob/master/docs/api.md)
|
||||
* [Running in the browser](https://github.com/microsoft/playwright/blob/master/docs/web.md)
|
||||
|
Loading…
x
Reference in New Issue
Block a user