//-------------------------------------------------------------------

        #region Methods for manipulation the inbox gmail page
        /// <summary>Quit from current account</summary>
        public void QuitFromAccount()
        {
            GoogleAccount.Click();

            GoogleAccountPopUp accountPopUp = new GoogleAccountPopUp(this.driver);

            accountPopUp.SignOutFromAccount();
        }
Beispiel #2
0
        public void SignOutFromAccount_IsSignOut()
        {
            this.accountPopUp = inboxGmailPage.OpenAccountManager();

            SigninChooserPage signinChooserPage = accountPopUp.SignOutFromAccount();

            Assert.AreEqual(signinChooserPage.GetCurrentUrl(), this.driver.Url);
        }