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