Esempio n. 1
0
        public void CancelEstimation()
        {
            var button = PlanningPokerDeskElement.FindElement(By.CssSelector("div.actionsBar a"));

            Assert.AreEqual("Cancel estimation", button.Text);
            button.Click();
        }
Esempio n. 2
0
        public void AssertTeamName(string team, string member)
        {
            var teamNameHeader = PlanningPokerDeskElement.FindElement(By.CssSelector("div.team-title h2"));

            Assert.AreEqual(team, teamNameHeader.Text);
            var userHeader = PlanningPokerDeskElement.FindElement(By.CssSelector("div.team-title h3"));

            Assert.AreEqual(member, userHeader.Text);
        }
Esempio n. 3
0
        public void StartEstimation()
        {
            var button = PlanningPokerDeskElement.FindElement(By.CssSelector("div.actionsBar a"));

            Assert.AreEqual("Start estimation", button.Text);

            button.Click();

            PlanningPokerDeskElement.FindElement(By.CssSelector("div.availableEstimations"));
        }