Using Playwright to control Chromium, Firefox, or WebKit with Python and optional asyncio integration.
By Max Schmitt, Published on 8/7/2020
In this article, we're gonna focus on the current state of using Playwright with Python. Playwright is a Node.js library to automate browsers (Chromium, Firefox, WebKit) with a single API which provides now also the interfaces to provide other cross-language support, in this particular blog post Python.
In comparison to other automation libraries like Selenium, Playwright offers:
And by that, all these features are also available in the Python integration. Be aware, that Playwright Python is currently in beta but exposes already most of the common methods and functions to be used. Since communication with browsers is mostly async based, Playwright does also provide an async based interface. It's a developer decision in the end but in most cases, the sync version is easier debuggable with REPLs like ipdb, pdb, or IPython since they don't work with await and by that, your are more productive with writing your actual features.
Since the core concept of Playwright is also the same as in the Python version, the function calls are mostly the same except how you access the Playwright object. For that, you have to use the sync_playwright
context manager with a with statement.
This code snippet navigates to whatsmyuseragent.org in Chromium, Firefox and WebKit, and saves 3 screenshots.
from playwright import sync_playwrightwith sync_playwright() as p:for browser_type in [p.chromium, p.firefox, p.webkit]:browser = browser_type.launch()page = browser.newPage()page.goto('http://whatsmyuseragent.org/')page.screenshot(path=f'example-{browser_type.name}.png')browser.close()
This code snippet navigates to example.com in Firefox and executes a script in the page context to determine the window dimensions.
from playwright import sync_playwrightwith sync_playwright() as p:browser = p.firefox.launch()page = browser.newPage()page.goto('https://www.example.com/')dimensions = page.evaluate('''() => {return {width: document.documentElement.clientWidth,height: document.documentElement.clientHeight,deviceScaleFactor: window.devicePixelRatio}}''')print(dimensions)browser.close()
This code snippet sets up request routing for a Chromium page to log all network requests.
import asynciofrom playwright import async_playwrightasync def main():async with async_playwright() as p:browser = await p.chromium.launch()page = await browser.newPage()def log_and_continue_request(route, request):print(request.url)asyncio.create_task(route.continue_())# Log and continue all network requestsawait page.route('**', lambda route, request: log_and_continue_request(route, request))await page.goto('http://todomvc.com')await browser.close()asyncio.get_event_loop().run_until_complete(main())
For writing actual end-to-end tests its common to use a test runner. In the Python world, Pytest is very common and we're using in our example the official Playwright integration for it. Instead of using it manually, it provides features like:
--headful
argument to debug them easilyIt's Open Source and available on GitHub and installable with PIP:
pip install pytest pytest-playwright
Pytest has the concept that you have fixtures that will pass the values inside which are specified by the parameter name. In our case, we use for that page
which will call the Playwright Pytest plugin to give us a page object.
def test_is_chromium(page):page.goto("https://www.google.com")page.type("input[name=q]", "Playwright GitHub")page.click("input[type=submit]")page.waitForSelector("text=microsoft/Playwright")
You can run it with pytest
or optionally specify multiple browsers to run the test on like pytest --browser chromium --browser firefox --browser webkit
which will run 3 tests in the end.
For more detail information about the Pytest usage, you'll find the documentation on GitHub.
Playwright Python is still beta, but for small projects with are not used in production its worth it to try it out to see if you benefit from it compared to other automation libraries. If you encounter any bugs or find some missing features, feel free to file an issue on GitHub.