Beispiel #1
0
 public void GetSelectedIndexTest()
 {
     CommonActionsData.CheckActionThrowError(() => ColorsControl.SelectedIndex(), CommonActionsData.NoElementsMessage);
 }
Beispiel #2
0
 public void SelectEnumTest()
 {
     ColorsControl.Select(Colors.Blue);
     CommonActionsData.CheckAction("Colors: value changed to Blue");
 }
Beispiel #3
0
 public void SetValueTest()
 {
     ColorsControl.Value = "Blue";
     CommonActionsData.CheckAction("Colors: value changed to Blue");
 }
Beispiel #4
0
 public void SelectIndexTest()
 {
     ColorsControl.Select(4);
     CommonActionsData.CheckAction("Colors: value changed to Blue");
 }