Dmitry Gozman
Dmitry Gozman
Should be fixed in the future by #20271.
@eatonjl Should be in v1.31.
@eatonjl Yep, a new issue with a repro would be great! It seems like your scenarios have the best coverage for Firefox 😄
@jameslounds Thank you for the PR! Unfortunately, Playwright is not ready to support the stable API of these reporters, so exposing them publicly will not be very useful, as it...
@mpaczula This was a bug fix #18260. Now `{ hasText: new RegExp('^Debugging Tests$') }` only matches those elements where full text content matches the regular expression. So, in the example...
@mastrzyz Are you using `JSHandle`s? We [recommend locators](https://playwright.dev/dotnet/docs/handles#locator-vs-elementhandle) instead. Anyway, this is a valid feature request, leaving it for prioritization.
@mastrzyz Could you share the trace file with us?
Investigation notes: out of 16000 trace events, there are: 5000 `Page.console` events, 5000 `ConsoleMessage.__create__` events and 5000 `JSHandle.__create__` events, because each console message had a handle in it.
Ideally, we would compress the trace format and make it save faster, probably by batching events.
Upstream investigation notes: `RenderFrameDevToolsAgentHost::AddAllAgentHosts` skips `WebContents` without a live render frame, which is the case for Electron's `BrowserWindow` that was created, but never loaded the url yet. This in turn...