How to read IFRAME html code using WebBrowser?
I have a site with an iframe, and after a few clicks, a new URL opens inside this IFRAME with some HTML CODE. Is there any way to read this ?. When I try to move () to this URL, I am redirected to the main page of this site (it is not possible to open this link twice).
Uri IFRAME_URL = webBrowser1.Document.Window.Frames[0].Url;
Perhaps something similar to:
Uri IFRAME_URL = webBrowser1.Document.Window.Frames[0]. ... DOCUMENTTEXT;
source
share