コード例 #1
0
        private void NavigateToMainPage(BrowserType browserType)
        {
            NhlMainPage nhlMainPage = new NhlMainPage(browserType);

            nhlMainPage.NavigateToNhlMainPage();

            String expectedText = "Official Site of the National Hockey League | NHL.com";

            nhlMainPage.Assertion(nhlMainPage.Title, expectedText);
        }
コード例 #2
0
        public void executeTest(BrowserType browserType)
        {
            NhlMainPage nhlMainPage = new NhlMainPage(browserType);

            nhlMainPage.NavigateToNhlMainPage();

            NhlPlayoffsPage nhlPlayoffsPage = nhlMainPage.GoToPlayoffsPage();

            String expectedTitleForPlayoffPage = "Stanley Cup Playoffs | NHL.com";

            nhlPlayoffsPage.Assertion(nhlPlayoffsPage.Title, expectedTitleForPlayoffPage);
        }