playwright-python
playwright-python copied to clipboard
Python version of the Playwright testing and automation library.
I'm trying to add Playwright to my conda environment installed from Anaconda's repository, but it produces conflicts and/or tries to replace the entire environment. It seems the packages published to...
https://github.com/microsoft/playwright-dotnet/issues/2819
I have `python-playwright` with version 1.41.0, and the below code: ```python from playwright.sync_api import sync_playwright with sync_playwright() as p: browser = p.chromium.launch() ... # Use browser browser.close() ``` Ideally, one...
### System info - Playwright Version: 1.40.0 - Operating System: macos monterey 12.2.1 (Apple M1) - Other info: pyee==11.0.1 **Steps** Try to update pyee from version 11.0.1 to 11.1.0 **Expected**...
I didn't have a chance to test this yet -- any idea on how to test this easily?
### Your question Hello playwright team, I know the consensus about multithreading & playwright is that you should create one playwright instance per thread because playwright is not threadsafe, which...
I am having some trouble using page.route within pytest. I think the issue stems from the way the route functions are run. I believe the routing is run in a...
https://github.com/microsoft/playwright-python/pull/1882#issuecomment-1532914149
the [show steps/fixtures in the trace](https://youtu.be/JeFD6rqDbBo?t=94) is certainly a nice feature released in 1.34 - grouping all the associated actions makes a trace file easier to go through. is there...
**Context:** - Playwright Version: `v1.30` - Operating System: `MacOS Ventura 13.1` - Python version: `3.9` - Extra: `conda 22.11.1` **Code Snippet** ``` % conda create -n test_playwright python=3.9 % conda...