public void CheckAboutUsButton()
        {
            pageModel  = new MainPageModel(driver);
            driver.Url = Urls.mainPage;
            string actRes = pageModel.FindAboutUsMenuBatton().
                            ClickOnAboutUsButton().
                            FindAboutUsMainLabel().
                            GetTextFromMainLabel();

            Assert.AreEqual("О нас", actRes);
        }