def test4_wrong_password(self): """错误密码登录测试""" num = str(random.randint(0, 199)) pl = PageLogin(self.driver) pl.test_login(num + "*****@*****.**", num * 3) sleep(3) self.assertEqual(pl.login_error(), "你输入的帐号或密码不正确,请重新输入。")
def test3_null_password(self): """测试空密码登录""" num = str(random.randint(0, 199)) pl = PageLogin(self.driver) pl.test_login(num + "*****@*****.**", "") sleep(3) self.assertEqual(pl.login_error(), "你还没有输入密码!")
def test_null_password(self): """测试空密码登录""" pl = PageLogin(self.driver) pl.test_login(self.num + "*****@*****.**", "") sleep(3) get_screenshot(self.driver, "./mail_auto_test/report/img/null_password_login.jpg") self.assertEqual(pl.login_error(), "你还没有输入密码!")
def test_null_username(self): """测试空户名和空密码登录""" pl = PageLogin(self.driver) pl.test_login("", "") sleep(3) get_screenshot(self.driver, "./mail_auto_test/report/img/null_username_login1.jpg") self.assertEqual(pl.login_error(), "你还没有输入帐号!")
def test_wrong_password(self): """错误密码登录测试""" pl = PageLogin(self.driver) pl.test_login(self.num + "*****@*****.**", self.num * 3) sleep(3) get_screenshot(self.driver, "./mail_auto_test/report/img/wrong_password_login.jpg") self.assertEqual(pl.login_error(), "你输入的帐号或密码不正确,请重新输入。")
def test2_null_username(self): """测试空户名和密码非空登录""" pl = PageLogin(self.driver) pl.test_login("", "xxxxxxxxx") sleep(3) self.assertEqual(pl.login_error(), "你还没有输入帐号!")