Dmitry Gozman
Dmitry Gozman
Closing as per above.
@sand4rt For now, we can put more content into https://playwright.dev/docs/test-components. You can add a section describing the API. Once we are ready to go out of experiment, we'll figure out...
@jessewjoseph I've tried your snippet in v1.42.1 and v1.43.1 - both versions run all `beforeEach` hooks and skip the test. This is by design, because the test runner cannot differentiate...
@hklsiteimprove @ritz078 I have not been able to reproduce this issue after changing `src="/playwright/index.ts"` to `src="./index.ts"`. However, I noticed that your error message contains `"/myrepo/playwright/index.html"`. Perhaps you want to set...
We have to reproduce this issue locally to be able to debug it. If you can provide a full repro, please file a new issue by filling the "Bug Report"...
@amankagithub Unfortunately, we found it hard to review and merge this PR. Therefore, it is going slowly, sorry for that! To make this process better, let's follow our general guidelines:...
I can repro. The problem is [this call](https://github.com/microsoft/playwright/blob/main/packages/playwright-ct-core/src/viteUtils.ts#L185) returns `undefined` when given `specifier: '@mui/material'`, and so we generate the following into `index.tsx`: ``` const _mui_material_TextField = () => import('undefined').then((mod) =>...
@joeprivettsmart Could you please file an issue with a repro? Internal error means that something went wrong in the test runner, we would love to fix it!
@jeff-an This is how screenshots in Chromium work. If you are capturing a specific area of the page, which is the case for the element screenshot, Chromium translates that area...
@jeff-an I see, thanks! As a workaround, I'd recommend to call `page.screenshot()` and then clip it to your liking, for example by calling `locator.boundingBox()` to determine the clip rect. I'll...