コード例 #1
0
 public FizzBuzzDriver PreviousPageLinkShouldNotBeEnabled()
 {
     PreviousPage
     .GetClasses()
     .Should().Contain(
         "disabled",
         "because the previous page link should look disabled on user's screen");
     PreviousPage
     .TagName
     .Should().Be(
         "div",
         "because the previous page link should not be a hyper link");
     return(this);
 }