playwright
playwright copied to clipboard
Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.
When my test fails, I'm greeted with this wall of text: ``` attachment #1: trace (application/zip) --------------------------------------------------------- test-results/backoffice-misc-Miscellaneous-Backoffice-stuff-da01b-nt-test-basics-chromium/trace.zip Usage: npx playwright show-trace test-results/backoffice-misc-Miscellaneous-Backoffice-stuff-da01b-nt-test-basics-chromium/trace.zip ------------------------------------------------------------------------------------------------ attachment #2: trace (application/zip) --------------------------------------------------------- test-results/backoffice-misc-Miscellaneous-Backoffice-stuff-da01b-nt-test-basics-chromium/trace-1.zip...
**Context:** - Playwright Version: `1.24.2` - Operating System: macOS - Node.js version: 16.x - Browser: Firefox - Extra: running as part of our Azure Pipeline We see our unit test...
### Workaround Use **Ubuntu 22** to run the **Ubuntu 22** (jammy) container, then it works. Using Ubuntu 20 to run it, won't work and leads into this issue. Please upvote...
**Context:** - Playwright Version: [what Playwright version do you use?] 1.24.1 - Operating System: [e.g. Windows, Linux or Mac] Ubuntu 22.04 - Node.js version: [e.g. 12.22, 14.6] 16.15.1 - Browser:...
Our team has a case to use the BDD test, Playwright has any plan to add their own BDD implementation using the playwright test runner? That would be great if...
When running the tests in headed mode, the tests can be easily aborted by just closing PW's browser window(s). However, when running in headless mode, there is no way to...
Currently there is no way to combine test results into one [html report,](https://playwright.dev/docs/test-reporters#html-reporter) while using [sharding](https://playwright.dev/docs/test-parallel#shard-tests-between-multiple-machines) on multiple machines. (v1.17.0-rc1) I end up with multiple reports which makes it harder...
Hello. I am trying to deal with saving authentication state between my tests. I am going with approach where I have beforeAll hook where I log in to application, then...
There is [this function](https://www.w3schools.com/jsref/met_element_hasattribute.asp) `element.hasAttribute` but apparently it doesn't exist in the PW framework. This would be very useful to have as there are cases where we need to check...
When I run component tests, I found first uses rollup to bundle the files and then run the test, I wonder if we can use vite dev server mode to...