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(); }