예제 #1
0
        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);
        }
예제 #3
0
 public void ThenTheCandidateListWillDisplayTheCandidatesHaveStatusRejected()
 {
     Assert.IsTrue(MyDriver.IsElementVisible(MyDriver.driver, By.CssSelector(".candidate-content:nth-child(1) .sprite-circle-remove")));
 }