Beispiel #1
0
 /// <summary>
 /// Go to the first element of the GridView
 /// </summary>
 private static void GoToFirstProperty()
 {
     Base.SendKeyStrokes("{HOME}");
 }
Beispiel #2
0
 /// <summary>
 /// Go to the next element of the GridView
 /// </summary>
 private static void GoToNextProperty()
 {
     Base.SendKeyStrokes("{DOWN}");
 }
Beispiel #3
0
 /// <summary>
 /// Sets the display of the GridView to ascending name ordering
 /// -- Might throw a HolodeckExceptions.UnaccessableControlException
 /// </summary>
 private static void SetNameOrdering()
 {
     GoTo(TabStop.ToolBar);
     Base.SendKeyStrokes("{RIGHT}");                     // Right arrow
     Base.SendKeyStrokes(" ");                           // space
 }