Код:
// Установка значения [22222] элементу с тэгом [input:text]
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildById("text");
if (he.IsVoid) {
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildByName("text");
}
if (he.IsVoid)
{
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildByAttribute("input:text", "class", "input__control\\ input__input", "regexp", 0);
}
if (he.IsVoid) {
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 1).FindChildByAttribute("input:text", "fulltag", "input:text", "text", 1);
}
if (he.IsVoid) return -1;
// Задержка эмуляции
instance.WaitFieldEmulationDelay();
// Установить элементу значение "22222"
he.SetValue("22222", "Full", false);
Так вот, почему ожидание ввода перед самим вводом? в справке наоборот. "вышел на улицу в лыжи обутый...")))