Replies: 3 comments 1 reply
-
For testing purposes comment out your CustomRequestHandler, just in case it's blocking pages from loading. Also check the log file for errors see https://github.com/cefsharp/CefSharp/wiki/Trouble-Shooting#log-file If that doesn't work then you'll need to provide more detail to your code example. OnFrameLoadEnd event handler for starters. Your code doesn't subscribe to the JavascriptMessageReceived event from what I can tell. Overall there's too many pieces missing from your example code for me to say what's going on. |
Beta Was this translation helpful? Give feedback.
-
Hi! I figured out , that some websites have infinite loading time. Trying for instance for https://kolchaka.net - I`m not getting loadingstatechanged the second time (for e.isLoading==faslse) and FrameLoadEnd. I guess I can do nothing about this, however maybe there is any workaround, do I could hook JavascriptMessageReceived to the webpage at least after partial load (with JavascriptMessageReceived I will then catch user mouseclicks on webpage). `
` |
Beta Was this translation helpful? Give feedback.
-
also found this in debug console: ERROR:browser_info_manager.cc(559)] Timeout of new browser info response for frame |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Using ChromiumWebBrowser for WinForms. When I load page first time I get into OnFrameLoadEnd handler.
public Form1()
{
InitializeComponent();
`
However when I load the next page using
browser.Load("http://site.net")
, it doest not fire. The same story with JavascriptMessageReceived . What am I doing wrong?Beta Was this translation helpful? Give feedback.
All reactions