Example #1
0
 public void Confirm_Session_Removed_After_Logout()
 {
     try
     {
         LoginPage.LoginAsStandardUser();
         GlobalPage.LogoutAndVerifySessionRemoved();
     }
     catch (Exception e) { throw e; }
 }
Example #2
0
 public void Logout()
 {
     try
     {
         LoginPage.LoginAsStandardUser();
         GlobalPage.VerifyLogout();
     }
     catch (Exception e) { throw e; }
 }
Example #3
0
 protected void btnLogin_Click(object sender, EventArgs e)
 {
     try
     {
         this.Logar(this._txtUsuarios.Text, this._txtSenhas.Text, this._txtClientes.Text, "");
     }
     catch (Exception exception1)
     {
         ProjectData.SetProjectError(exception1);
         Exception ex = exception1;
         throw new Exception(GlobalPage.MsgErro(this._txtClientes.Text, this._txtUsuarios.Text, "intouch", "acesso1.aspx", "btnLogin_Click", ex.Message, ex.StackTrace, this.Form.Controls));
     }
 }