55 lines
2.4 KiB
Markdown
55 lines
2.4 KiB
Markdown
# 🎭 [Playwright](https://playwright.dev) for Python [](https://pypi.python.org/pypi/playwright/) [](https://anaconda.org/Microsoft/playwright) [](https://aka.ms/playwright/discord)
|
|
|
|
Playwright is a Python library to automate [Chromium](https://www.chromium.org/Home), [Firefox](https://www.mozilla.org/en-US/firefox/new/) and [WebKit](https://webkit.org/) browsers with a single API. Playwright delivers automation that is **ever-green**, **capable**, **reliable** and **fast**. [See how Playwright is better](https://playwright.dev/python).
|
|
|
|
| | Linux | macOS | Windows |
|
|
| :--- | :---: | :---: | :---: |
|
|
| Chromium <!-- GEN:chromium-version -->148.0.7778.96<!-- GEN:stop --> | ✅ | ✅ | ✅ |
|
|
| WebKit <!-- GEN:webkit-version -->26.4<!-- GEN:stop --> | ✅ | ✅ | ✅ |
|
|
| Firefox <!-- GEN:firefox-version -->150.0.2<!-- GEN:stop --> | ✅ | ✅ | ✅ |
|
|
|
|
## Documentation
|
|
|
|
[https://playwright.dev/python/docs/intro](https://playwright.dev/python/docs/intro)
|
|
|
|
## API Reference
|
|
|
|
[https://playwright.dev/python/docs/api/class-playwright](https://playwright.dev/python/docs/api/class-playwright)
|
|
|
|
## Example
|
|
|
|
```py
|
|
from playwright.sync_api import sync_playwright
|
|
|
|
with sync_playwright() as p:
|
|
for browser_type in [p.chromium, p.firefox, p.webkit]:
|
|
browser = browser_type.launch()
|
|
page = browser.new_page()
|
|
page.goto('http://playwright.dev')
|
|
page.screenshot(path=f'example-{browser_type.name}.png')
|
|
browser.close()
|
|
```
|
|
|
|
```py
|
|
import asyncio
|
|
from playwright.async_api import async_playwright
|
|
|
|
async def main():
|
|
async with async_playwright() as p:
|
|
for browser_type in [p.chromium, p.firefox, p.webkit]:
|
|
browser = await browser_type.launch()
|
|
page = await browser.new_page()
|
|
await page.goto('http://playwright.dev')
|
|
await page.screenshot(path=f'example-{browser_type.name}.png')
|
|
await browser.close()
|
|
|
|
asyncio.run(main())
|
|
```
|
|
|
|
## Other languages
|
|
|
|
More comfortable in another programming language? [Playwright](https://playwright.dev) is also available in
|
|
- [Node.js (JavaScript / TypeScript)](https://playwright.dev/docs/intro),
|
|
- [.NET](https://playwright.dev/dotnet/docs/intro),
|
|
- [Java](https://playwright.dev/java/docs/intro).
|