Exemplo n.º 1
0
        public void GivenYoussefHasOpenedTheSprintListingPage()
        {
            var youssef = cast.Get <Youssef>();

            stage.ShineTheSpotlightOn(youssef);
            Given(youssef).WasAbleTo(OpenTheirBrowserOn.ThePage(SprintList.ForOpenSprints()));
        }
Exemplo n.º 2
0
        public void WhenYoussefOpensTheSprintListingPage()
        {
            var youssef = cast.Get <Youssef>();

            stage.ShineTheSpotlightOn(youssef);
            When(youssef).AttemptsTo(OpenTheirBrowserOn.ThePage(SprintList.ForOpenSprints()));
        }
Exemplo n.º 3
0
 protected override void PerformAs(IPerformer actor)
 {
     actor.Perform(OpenTheirBrowserOn.ThePage(SprintList.ForOpenSprints()));
     actor.Perform(Wait.Until(SprintList.SprintListTable).IsVisible());
     actor.Perform(Navigate.ToAnotherPageByClicking(SprintList.TheSprintNamed(sprintTitle)));
     actor.Perform(Wait.Until(SprintDetail.SprintName).IsVisible());
 }
Exemplo n.º 4
0
        public void WhenTheyOpenTheSprintListingPage()
        {
            var theActor = stage.GetTheActorInTheSpotlight();

            When(theActor).AttemptsTo(OpenTheirBrowserOn.ThePage(SprintList.ForOpenSprints()));
        }