foreach (HtmlElement _a in webbrowser.Document.GetElementsByTagName("a"))
{
if(_a.InnerText=="Download")
{
_a.Focus();
_a.InvokeMember("click");
}
}