Кто может обьяснить как вместо испанского чата заходить в другие? где в коде строка которая за это отвечает ?
if (tab.IsBusy) tab.WaitDownloading();
tab.Navigate("
https://www.chateagratis.net/chat/chat.php", "");
if (tab.IsBusy) tab.WaitDownloading();
System.Threading.Thread.Sleep(20 * 1000);
HtmlElement he = instance.ActiveTab.FindElementByAttribute("span", "outerhtml", "<span\\ class=\"nick\">chatea_", "regexp", 0);
if (he.IsVoid) return -1;
instance.WaitFieldEmulationDelay();
he.RiseEvent("click", instance.EmulationLevel);
HtmlElement he1 = instance.ActiveTab.FindElementByAttribute("input:text", "fulltag", "input:text", "text", 0);
if (he1.IsVoid) return -1;
instance.WaitFieldEmulationDelay();
he1.SetValue(project.Variables["nick"].Value, instance.EmulationLevel, false);
HtmlElement he2 = instance.ActiveTab.FindElementByAttribute("button", "innertext", "Изменить", "regexp", 0);
if (he2.IsVoid) return -1;
instance.WaitFieldEmulationDelay();
he2.RiseEvent("click", instance.EmulationLevel);