Dmitry Gozman
Dmitry Gozman
@TadasV1 Most likely, that's an issue on the page. Playwright is really fast, and some pages are just not ready for that. Take a look at [this guide](https://playwright.dev/docs/navigations#hydration) and let...
@TadasV1 If something on the page changes after hydration, you can wait for some text to appear. ```ts await expect(page.getByText('Done loading')).toBeVisible(); ``` Alternatively, you can wait for the specific javascript...
@eni987 Well, you did fulfill request with an arbitrary content, so context is not secure indeed. Technically, no certificate was provided to the browser, just document content. Are there any...
@asdfjkalsdfla Is there any specific reason to upgrade?
@mscottford Are you using built-in html report? We do not save passed screenshots, because that would be expensive. Not sure how we could make this work to avoid significant performance...
Unfortunately, this is out of scope for Playwright. Codegen relies on the built-in `Map` class to work. When the page overrides `Map` and makes it unusable, it is expected to...
@mauricesnip Could you please share a repository where this happens? We believe this issue has been fixed in `v1.34.1` and `v1.34.2`, but you say it has regressed instead. It would...
@kurilov Is this related to some bug? Could you please file an issue first?
@Niitch Playwright respects source maps if you generate them, so I'd recommend to generate a source map for the `example.ts` file that will correctly point to the `example.feature`. Let me...
@Niitch I see, you have a runtime wrapper, that's likely not going to work nicely with source maps as you described. I am not really sure whether this is generated...