In my application, I am trying to suppress script errors while navigating to pages hosted in a winform webbrowser
and I don't want to use webBrowser.ScriptErrorsSuppressed = true;
property as it blocks all windows. I tried multiple approaches to resolve it including this one.
Disable Javascript error in WPF WebBrowser control
I am still getting script errors that too after DocumentCompleted
event subscription.
Has any one tried with better approach ?