[BUG] 1.20 has broken our tests in WebKit (page is just blank)
See original GitHub issue- Playwright Version: 1.20
- Operating System: Windows
- Node.js version: 16.3
- Browser: WebKit
- Extra: Since upgrading to 1.20 none of our tests work on WebKit anymore, downgrading the package works.
I have an example of the test here https://try.playwright.tech/?l=javascript&s=k7pbmkr
const playwright = require('playwright');
(async () => {
// Try to add 'firefox' to the list ↓
for (const browserType of ['chromium', 'webkit']) {
/** @type {import('playwright').Browser} */
const browser = await playwright[browserType].launch();
const context = await browser.newContext();
const page = await context.newPage();
await page.goto('https://console.cloudmanagementtest.apteco.com/authentication/login', {
waitUntil: "networkidle"
});
await page.screenshot({ path: `example-${browserType}.png` });
await browser.close();
}
})();
try.playwright.tech is currently on 1.19 and it works correctly, I can also confirm that it works correctly when I downgrade my package back to 1.19. However 1.20 doesn’t load any content on the page.
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
Bug #1966418 “[jammy regression] webkit apps do not display ...
In a recent mass upgrade in my distro, I upgraded WebKitGTK to 2.36.0 (among other packages). I'm now finding that the webview is...
Read more >118149 - Page loads then immediately disappears - Monorail
I notice this on Fedora 19 (nvidia driver) when I have ~/.config/google-chrome (or chromium) symlinked to my Private directory for ecryptfs. When I...
Read more >Bug of the Month: Blank Web Views - Embrace Blog and Events
Blank web views occur on iOS when a WKWebView fails or the OS kills the web view's content process. iOS applications normally have...
Read more >Bug listing with status RESOLVED with resolution TEST ...
Bug :233 - "Emacs segfaults when merged through the sandbox. ... (-r3 too) shows just a blank page" status:RESOLVED resolution:TEST-REQUEST severity:normal ...
Read more >Manual:Common errors and symptoms - MediaWiki
MediaWiki Errors. All pages have no content, but when editing a page the wiki text is there. Optionally with those error messages:
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@pavelfeldman sorry, I meant to comment on #12821, which is the issue I’m facing. I deleted my comment here and added it on #12821.
Fix coming up in 1.21 shortly.