Replies: 4 comments 2 replies
-
English please. Please provide more information, answer questions at https://github.com/cefsharp/CefSharp/wiki/Questions-&-Support#when-asking-a-question-please-include-the-following |
Beta Was this translation helpful? Give feedback.
-
private async void _browser_LoadingStateChanged2(object sender, LoadingStateChangedEventArgs e) I think this is an error in Cefs browser (115- until the latest version -117.2.40). After multiple page jumps, sometimes it becomes invalid |
Beta Was this translation helpful? Give feedback.
-
That happened me too with the new versions. |
Beta Was this translation helpful? Give feedback.
-
An issue has been created #4621 Moving the discussion there. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
private async void _browser_LoadingStateChanged2(object sender, LoadingStateChangedEventArgs e)
{
if (!e.IsLoading)
{
JavascriptResponse resp = await _browser.GetMainFrame().EvaluateScriptAsync(
@"document.getElementsByClassName('xt0psk2')[0]['href'];"
);
}
}
110版本可以 新版本提示
:EvaluateScriptAsyncChromiumWebBrowserRequest BrowserId : 1 not found it's likely the browser is already closedloadingStateChanged
Beta Was this translation helpful? Give feedback.
All reactions