def testLoginUsingMissingPwd(self):
     """
     Verify the exceptional handling by logging using invalid user
     """
     auth.checkIfUserIsLoggedIn(self.driver, 0, 'CRUDO')
     auth.negativeTestCaseLoginValidation(
         self.driver, config.users['MissingPwd']['username'],
         config.users['MissingPwd']['password'])
     auth.loginScreenValidations(self.driver)
 def testLoginUsingSpecialPwd(self):
     auth.checkIfUserIsLoggedIn(self.driver, 0, 'CRUDO')
     auth.loginOperation(self.driver,
                         config.users['PwdStartingSpecialChar']['username'],
                         config.users['PwdStartingSpecialChar']['password'])
     auth.loginScreenValidations(self.driver)