public void ThenTheFirstJobShouldBeFollowed() { bool result = MyDriver.IsElementVisible(MyDriver.driver, By.CssSelector("tr:nth-of-type(1) > td > .sprite-filled-star")); Assert.IsTrue(result); }
public void ThenTheCandidateShouldBeFollowed() { bool result = MyDriver.IsElementVisible(MyDriver.driver, By.CssSelector(".candidate-content:nth-child(1) .sprite-filled-star")); Assert.IsTrue(result); }
public void ThenTheCandidateListWillDisplayTheCandidatesHaveStatusRejected() { Assert.IsTrue(MyDriver.IsElementVisible(MyDriver.driver, By.CssSelector(".candidate-content:nth-child(1) .sprite-circle-remove"))); }