本文整理汇总了Python中openeobs_mobile.login_page.LoginPage.shows_login_error方法的典型用法代码示例。如果您正苦于以下问题:Python LoginPage.shows_login_error方法的具体用法?Python LoginPage.shows_login_error怎么用?Python LoginPage.shows_login_error使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类openeobs_mobile.login_page.LoginPage
的用法示例。
在下文中一共展示了LoginPage.shows_login_error方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestLoginPage
# 需要导入模块: from openeobs_mobile.login_page import LoginPage [as 别名]
# 或者: from openeobs_mobile.login_page.LoginPage import shows_login_error [as 别名]
class TestLoginPage(TestCommon):
"""
Setup a session and test the login page
"""
def setUp(self):
self.driver.get(MOB_LOGIN)
self.login_page = LoginPage(self.driver)
def test_login_page_title(self):
"""
Test that the title of the login page is Open-eObs
"""
self.assertTrue(PageConfirm(self.driver).is_login_page(),
'Incorrect page title')
def test_successful_login(self):
"""
Test that can log into the app with correct credentials
"""
self.login_page.login(NURSE_USERNM1,
NURSE_PWD1)
self.assertTrue(self.login_page.has_logged_in(), 'Unable to log in')
def test_error_message_login(self):
"""
Test that the login page shows an error on trying to login with
incorrect credentials
"""
self.login_page.login('invalid_credentials', 'invalid_credentials')
self.assertTrue(self.login_page.shows_login_error(),
'Does not show the error message')