public void ShouldBeAbleToLogin()
        {
            InitialPage.GoTo();
            var subscribeLocator = By.XPath("//span[contains(@class, 'title') and text() = 'Subscribe to Gogroopie']");

            var wait = new WebDriverWait(Driver.Instance, TimeSpan.FromSeconds(10));

            wait.Until(ExpectedConditions.ElementIsVisible(subscribeLocator));

            Assert.IsTrue(InitialPage.IsAt(), "Failed to load tha page.");
            Assert.IsTrue(InitialPage.IsAtSubscribeToGogroopie(Driver.Instance, subscribeLocator), "Not at subscribe screen.");
        }