Beispiel #1
0
 public FizzBuzzDriver SubmitForm(string submittedValue)
 {
     MaxValueInput.Click();
     MaxValueInput.SendKeys(submittedValue);
     MaxValueInput.Submit();
     return(this);
 }
Beispiel #2
0
 public FizzBuzzDriver TextBoxValueShouldBe(string expectedValue)
 {
     MaxValueInput
     .GetAttribute("value")
     .Should().Be(
         expectedValue,
         "because this is the value that the text box should contain");
     return(this);
 }