Developing and testing features or extensions for Microsoft Edge
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
With the latest push of Edge/Chrome and WebView2 to version 134 our webapps have become unusable. Dropdowns flicker but the user cannot select a choice. No errors on the page when we look at dev-tools. Anyone else have this issue? Ideas on a fix?
Developing and testing features or extensions for Microsoft Edge
Answer accepted by question author
Hi @Mark McCartney and @FP,
Thank you for your feedback. As far as I know, Microsoft is currently investigating this issue and will provide more information when it becomes available. If there's any update, I will post here. FYI, the only workaround available for the time being is staying at 133 if possible.
UPDATE
The Edge Product Group has completed work on a fix for this issue and projects that it could be available by the end of this week, provided no last-minute quality, security, technical, or release issues are identified before then. If anything occurs that would cause that projection to be revised, we will update you promptly.
UPDATE (3.14)
This issue was first corrected with the release of version 134.0.3124.68. For anyone having a similar issue, please upgrade to the latest version to test the fix.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Shijie Li
When I load a webview2 into a windows form, I save the inner.html with javascript and then try to save it in a string.
I have been using the Async/Await .net clauses in my sub/functions.
I can run this program the 3-4 times in a row just fine. But then after that. the javascript function fails to load into innertext part from webview. Is this a known bug with webview2? Is there a work around?
If I close out the program entirely it resets something and then works fine until that 4th or 5th try.
Very frustrating. When I use a button click to execute the copying from webview it works 100% of the time. But of course I want programmatically copy those contents.
'pull inner html out of page after Webview2 has completed....
Private Async Function WebNavigation_Complete() As Task
'sHTML = Await WebView21.ExecuteScriptAsync("document.body.innerText;")
End Function