示例#1
0
        public void SearchText()
        {
            TestContext.Progress.WriteLine("Step 1: Go to Google");
            var home = new HomePage(driver);

            TestContext.Progress.WriteLine("Step 2: Search for \"Selenium\"");
            home.DoSearch("Selenium");
            home.TitleBarShouldBe("Selenium");
            var resultPage = new ResultPage(driver);

            TestContext.Progress.WriteLine("Step 3: Click on 2nd link");
            resultPage.ClickOnFirstResultLink(2);
        }