Exemplo n.º 1
0
 public void ThenIShouldSeeLinksForAndAndInTheHeader(string OURWORK, string SPECIES, string PLACES)
 {
     var p = new WWFPage(Browser);
     Assert.That(p.Header, Shows.Content(OURWORK));
     Assert.That(p.Header, Shows.Content(SPECIES));
     Assert.That(p.Header, Shows.Content(PLACES));
 }
Exemplo n.º 2
0
 public void ThenIShouldSeeTheImageAppearBeneathItsAssociatedStoryText()
 {
     var p = new WWFPage(Browser);
     new ResponsiveHelper(Browser).ABeforeB(p.Text, p.Image);
 }
Exemplo n.º 3
0
 public void ThenIShouldSeeAMenuIcon()
 {
     var p = new WWFPage(Browser);
     Assert.True(p.MenuIcon.Exists());
 }
Exemplo n.º 4
0
 public void ThenIShouldSeeTheStoryTextAndTheStoryImagesLinedUpHorizontally()
 {
     var p = new WWFPage(Browser);
     new ResponsiveHelper(Browser).AAndBLineUp(p.Text, p.Image);
 }