The loaded page contains links like:

<a class="click" href="javascript:void(0)">Click here</a>

when you click on which should appear the necessary information. I try to do it programmatically as follows:

 HtmlElementCollection a_tag = wb1.Document.GetElementsByTagName("a"); foreach (HtmlElement he in a_tag) { if (he.InnerHtml == "Click here") he.InvokeMember("click"); } 

but get the necessary "info" does not work. What is the problem or how can it be done differently?

    0