I want to test a windows application that is formed with Windows Forms. I decided to work with the library automationelements.
The problem is that i dont know how to use it propertle. For example: How can i write in a textbox that i'm handling with automationelement?
The code is like:
var processStartInfo = new ProcessStartInfo(SATELITE_PATH);
var pSatelite = Process.Start(processStartInfo);
pSatelite.WaitForInputIdle();
Delay(2);
satelite = AutomationElement.RootElement.FindChildByProcessId(pSatelite.Id);
AutomationElement loginUser = satelite.FindDescendentByIdPath(new[] {"frmLogin", "txtUserName"});
I want to write the User in the loginUser. How can I do it?
Really thanks!