[BUG] action works on Safari, but fails in WebKit
See original GitHub issueContext:
- Playwright Version: 1.9.2
- Operating System: Ubuntu 20.04
- Node.js version: I use Python 3.8.5
- Browser: WebKit
- Extra: URL to reproduce: https://thomas-guettler.de/htmx-swap-err-webkit/page.html
Code Snippet
const { webkit } = require('playwright');
(async () => {
const browser = await webkit.launch({
headless: false
});
const context = await browser.newContext();
// Open new page
const page = await context.newPage();
// Go to https://thomas-guettler.de/htmx-swap-err-webkit/page.html
await page.goto('https://thomas-guettler.de/htmx-swap-err-webkit/page.html');
// Click textarea[name="comment"]
await page.click('textarea[name="comment"]');
// Fill textarea[name="comment"]
await page.fill('textarea[name="comment"]', 'foobar');
// Click text=Save
await page.click('text=Save');
// ---------------------
await context.close();
await browser.close();
})();
Describe the bug
If I press “Save” nothing happens. But finally you should see “Great, delicious food is on its way to you”
This works with chromium. And it works with Safari on MacOS.
Please let me know if you need more info.
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
If Safari on Mac doesn't open a webpage or isn't working as ...
These settings apply to all websites. Test with a private window. A website can store cookies, caches, and other data on your Mac,...
Read more >Weird rendering bug in desktop webkit (safari/chrome) with ...
Keep in mind, this only happens in Safari/Chrome on the desktop. Safari on the iPad and Firefox on the desktop are working fine....
Read more >202589 – Unable to Click on Safari 13 - WebKit Bugzilla
Webdriver/SafariDriver is Unable to click on buttons on the page. ... This bug is about a regression in safaridriver and its WebKit parts....
Read more >Fixing Google Chrome compatibility bugs in websites - FAQ
Google Chrome aims to render sites exactly like Safari. ... userAgent string. Often the checks used are buggy and do not identify Google...
Read more >appearance - CSS: Cascading Style Sheets - MDN Web Docs
button, Firefox Chrome Safari Edge, The element used to be drawn like a ... -moz-appearance or -webkit-appearance prefix, but not on the ...
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
Closing as a non-actionable bug, please feel free to file a new one and link this bug if there are remaining questions.
@pavelfeldman thank you very much for your reply. I will talk to the htmx creators:
https://github.com/bigskysoftware/htmx/issues/438