Ross Wollman
Ross Wollman
@YusufOzturk-Development The config is a node script, so it can run any code you'd like (although discouraged). If you need some info from a configurable JSON file you could do...
Yes, although if you want `SETTINGS_FILE` set for your second command (`npx playwright test id.spec.ts`) as well, add `npx cross-env SETTINGS_FILE=dev.json` before it as well.
Thanks for the report. The error message looks to be particularly confusing in this case. We will review!
Discussed and looks like: ``` PS C:\Dev\Temp\playwright-test> npm init playwright@latest PS C:\Dev\Temp\playwright-test> npx playwright test ``` and ``` PS C:\Dev\Temp\playwright-test> cd /dev/temp/playwright-test PS C:\dev\temp\playwright-test> npx playwright test ``` should behave...
Thanks for your report and the link to a repo. I forked your example and ran it in a default GitHub Codespace. However, it did not produce any errors: ```...
@jgerigmeyer Oops—missed that step! I can repro the error. I'm not sure yet what the source of it is, but we can dig in in the coming days. If you...
Thanks for the report! I've linked a new PR with formal test cases and can confirm the defect you're seeing. > browser tab runs out of memory when I attempt...
Thanks for the details explanation! Given there is a workaround for your use, and https://github.com/microsoft/playwright/issues/9883 would be the best way to help, I'm going to mark this as P3-collecting-feedback. I'll...
Thanks for the report and the repro. Labeled to collect upvotes and other users encountering the issue! As a workaround, you can try using [`locator.getAttribute(name[, options])`](https://playwright.dev/docs/api/class-locator#locator-get-attribute) to get the [`coords`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area#attr-coords),...
Edited above with some more pointers for suggested workarounds.