- Регистрация
- 29.05.2017
- Сообщения
- 447
- Благодарностей
- 700
- Баллы
- 93
Компиляция кода Ошибка в действии "CS0103" "The name 'Application' does not exist in the current context". [Строка: 1; Cтолбец: 43]
почему происходит такая ошибка?
Код:
instance.SetFileUploadPolicy("ok", "");
instance.SetFilesForUpload(project.Path + Application.StartupPath + project.Variables["fileforemail"].Value + ".txt");
// Событие click [text= Add Files] [tag=i]
HtmlElement he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 0).FindChildByAttribute("i", "class", "fa\\ fa-plus-square", "regexp", 0);
if (he.IsVoid) {
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByTag("form", 0).FindChildByAttribute("i", "fulltag", "i", "text", 1);
}
if (he.IsVoid) return -1;
// Задержка эмуляции
instance.WaitFieldEmulationDelay();
// Вызвать событие "click"
he.RiseEvent("click", instance.EmulationLevel);