question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[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:closed
  • Created 2 years ago
  • Comments:8 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
jnizetcommented, Mar 16, 2022

@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.

0reactions
pavelfeldmancommented, Apr 5, 2022

Fix coming up in 1.21 shortly.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found