Я пытаюсь нажать эту кнопку, но она не работает. Я оставляю код
<div class="big-red-button height-32 top-dialog-login-button button right" tabindex="0"> <span>Entra</span> <img alt="" class="loader" src="https://eu.static.mega.co.nz/3/images/mega/ajax-loader-white.gif"></div>
GeckoElementCollection ele = geckoWebBrowser1.Document.GetElementsByTagName("div");
foreach (GeckoHtmlElement el in ele)
{
if (el.GetAttribute("class").Equals("big-red-button height-48 login-button button right"))
{
el.Click();
}
}