код взял с форума, как подсказали выше
вот он
lock(SyncObjects.InputSyncer)
{
string dialogCaption = project.Variables["caption"].Value;
string buttonText = project.Variables["buttonText"].Value;
string fileToUpload = project.Variables["fileToUpload"].Value;
System.Threading.Thread.Sleep(2000);
Emulator.ActiveWindow(dialogCaption, true);
System.Threading.Thread.Sleep(2000);
var result = Emulator.SendText(dialogCaption, 240, 368, fileToUpload);
System.Threading.Thread.Sleep(2000);
Emulator.ActiveWindow(dialogCaption, true);
return Emulator.ButtonClick(dialogCaption, buttonText);
}
буду благодарен за помощь!