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!

link|improve this question

0% accept rate
feedback

1 Answer

Use ValuePattern:

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"});

if (loginUser != null)
{
     ValuePattern valPattern = loginUser.GetCurrentPattern(ValuePattern.Pattern) as ValuePattern;
     valPattern.SetValue(username);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.