コード例 #1
0
ファイル: EntryPoint.cs プロジェクト: YauheniLoban/TAT_2018
        static void Main(string[] args)
        {
            ChromeDriver driver = new ChromeDriver();

            driver.Navigate().GoToUrl("https://www.tut.by/?crnd=88641");
            IWebElement element = driver.FindElementByXPath("//*[@data-ua-hash=\"main_news~1\"]");

            element.Click();
            driver.PrintTextOfArticle();
            driver.BackToHomePageTUTBY();
            Console.WriteLine("|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||");

            element = driver.FindElementByXPath("//*[@data-ua-hash=\"main_news~2\"]");
            element.Click();
            driver.PrintTextOfArticle();
            driver.BackToHomePageTUTBY();

            Console.WriteLine("|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||");

            element = driver.FindElementByXPath("//*[@data-ua-hash=\"main_news~3\"]");
            element.Click();
            driver.PrintTextOfArticle();
            driver.BackToHomePageTUTBY();
            Console.WriteLine("|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||");

            element = driver.FindElementByXPath("//*[@data-ua-hash=\"main_news~4\"]");
            element.Click();
            driver.PrintTextOfArticle();
            driver.BackToHomePageTUTBY();
            driver.Quit();
        }