public void ClickClicks()
        {
            var textBox = App.TextBox("clearTextBox");
            var button  = App.Button("clearButton");

            textBox.SetText("This text should be cleared by the button above");
            button.Click();
            textBox.RequireText("");
        }
Ejemplo n.º 2
0
 public void RequireValueThrowsExceptionForIncorrectValueInASimpleComboBox()
 {
     App.TextBox("simpleComboBox").RequireText("This is not my value");
 }
Ejemplo n.º 3
0
 public void RequireTextPassesForCorrectValues()
 {
     App.TextBox("textBox").RequireText("This is a TextBox");
 }