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