Esempio n. 1
0
    def test_LoginFailedIncorrectPassword(self, Setup):

        mp = MainPage()
        mp.Login(Setup, 'repeateduser', '1231234246732')
        assert mp.LoginErrorIsOn(Setup)
Esempio n. 2
0
    def test_LoginFailedIncorrectUsername(self, Setup):

        mp = MainPage()
        mp.Login(Setup, 'nulluser', '12345678')
        assert mp.LoginErrorIsOn(Setup)
Esempio n. 3
0
    def test_LoginFailedInvalidPassword(self, Setup):

        mp = MainPage()
        mp.Login(Setup, 'repeateduser', '1yre')
        assert mp.LoginErrorIsOn(Setup)