I want to copy all visible text from WebBrowser.
Clipboard.SetText(WebBrowser1.Document.Body.InnerText)
This code is working, but it's also getting text between <div style="display:none">
and </div>
, which i don't want (i want only text that is visible when i manually go to that website).