public void ClickFloatingMenuTest()
        {
            var floatingMenuPage = new InternetPage(this.DriverContext)
                                   .OpenHomePage()
                                   .GoToFloatingMenu()
                                   .ClickFloatingMenuButton();

            Assert.IsTrue(floatingMenuPage.IsUrlEndsWith("#home"), "URL does not end with #home - probably 'Home' floating menu button was not clicked properly");
        }