本文整理汇总了Python中openeobs_mobile.list_page.ListPage.go_to_task_list方法的典型用法代码示例。如果您正苦于以下问题:Python ListPage.go_to_task_list方法的具体用法?Python ListPage.go_to_task_list怎么用?Python ListPage.go_to_task_list使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类openeobs_mobile.list_page.ListPage
的用法示例。
在下文中一共展示了ListPage.go_to_task_list方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: TestTaskListPage
# 需要导入模块: from openeobs_mobile.list_page import ListPage [as 别名]
# 或者: from openeobs_mobile.list_page.ListPage import go_to_task_list [as 别名]
class TestTaskListPage(TestCommon):
"""
Setup a session and test that the task list page works correctly
"""
def setUp(self):
self.driver.get(MOB_LOGIN)
self.login_page = LoginPage(self.driver)
self.task_list_page = ListPage(self.driver)
self.patient_list_page = ListPage(self.driver)
self.login_page.login(NURSE_USERNM1, NURSE_PWD1)
self.task_list_page.go_to_task_list()
def test_can_logout(self):
"""
Test that the title of the login page is Open-eObs
"""
self.task_list_page.logout()
self.assertTrue(PageConfirm(self.driver).is_login_page(),
'Did not get to the logout page correctly')
def test_can_go_to_task_list_page(self):
"""
Test that can go to task list page
"""
self.task_list_page.go_to_task_list()
self.assertTrue(PageConfirm(self.driver).is_task_list_page(),
'Did not get to the task list page correctly')
def test_go_to_patient_list_page(self):
"""
Test that can go to the patient list page
"""
self.task_list_page.go_to_patient_list()
self.assertTrue(PageConfirm(self.driver).is_patient_list_page(),
'Did not get to patient list page correctly')
def test_can_go_to_stand_in_page(self):
"""
Test that can navigate to the stand in page
"""
self.task_list_page.go_to_standin()
self.assertTrue(PageConfirm(self.driver).is_stand_in_page(),
'Did not get to stand in page correctly')
def test_can_carry_out_barcode_scan(self):
"""
Test that can do a barcode scan
"""
tasks = self.task_list_page.get_list_items()
patient_to_test = tasks[0]
task_id = patient_to_test.get_attribute('href').replace(
TASK_PAGE, ''
)
id_to_use = self.task_list_page.task_scan_helper(task_id)
self.task_list_page.do_barcode_scan(id_to_use['other_identifier'])
def test_click_list_item(self):
"""
Test that clicking on a work item tasks user to carry out the task
"""
tasks = self.task_list_page.get_list_items()
task_to_test = tasks[0]
task_url = task_to_test.get_attribute('href')
task_to_test.click()
self.assertTrue(PageConfirm(self.driver).is_task_page(),
'Did not get to task page correctly')
self.assertEqual(self.driver.current_url, task_url,
'Incorrect url')
def test_list_item_patient_name(self):
"""
Test that the patient name is in the list item
"""
tasks = self.task_list_page.get_list_items()
patient_to_test = tasks[0]
task_id = patient_to_test.get_attribute('href').replace(
TASK_PAGE, ''
)
task_data = self.task_list_page.task_helper(task_id)[0]
name_to_use = task_data['full_name']
patient_name = self.driver.find_element(
*list_page_locators.LIST_ITEM_PATIENT_NAME
)
self.assertEqual(patient_name.text, name_to_use.strip(),
'Incorrect name')
def test_list_item_patient_location(self):
"""
Test that the patient name is in the list item
"""
tasks = self.task_list_page.get_list_items()
patient_to_test = tasks[0]
task_id = patient_to_test.get_attribute('href').replace(
TASK_PAGE, ''
)
task_data = self.task_list_page.task_helper(task_id)[0]
location = task_data['location']
parent_location = task_data['parent_location']
bed_to_use = '{0}, {1}'.format(location, parent_location)
#.........这里部分代码省略.........
示例2: TestPatientListPage
# 需要导入模块: from openeobs_mobile.list_page import ListPage [as 别名]
# 或者: from openeobs_mobile.list_page.ListPage import go_to_task_list [as 别名]
class TestPatientListPage(TestCommon):
"""
Setup a session and test that the task list page works correctly
"""
def setUp(self):
self.driver.get(MOB_LOGIN)
self.login_page = LoginPage(self.driver)
self.patient_list_page = ListPage(self.driver)
self.login_page.login(NURSE_USERNM1, NURSE_PWD1)
self.patient_list_page.go_to_patient_list()
def test_can_logout(self):
"""
Test that the title of the login page is Open-eObs
"""
self.patient_list_page.logout()
self.assertTrue(PageConfirm(self.driver).is_login_page(),
'Did not get to the logout page correctly')
def test_can_go_task_list_page(self):
"""
Test that can go to task list page
"""
self.patient_list_page.go_to_task_list()
self.assertTrue(PageConfirm(self.driver).is_task_list_page(),
'Did not get to the task list page correctly')
def test_patient_list_page(self):
"""
Test that can go to the patient list page
"""
self.patient_list_page.go_to_patient_list()
self.assertTrue(PageConfirm(self.driver).is_patient_list_page(),
'Did not get to patient list page correctly')
def test_can_go_stand_in_page(self):
"""
Test that can navigate to the stand in page
"""
self.patient_list_page.go_to_standin()
self.assertTrue(PageConfirm(self.driver).is_stand_in_page(),
'Did not get to stand in page correctly')
def test_can_do_barcode_scan(self):
"""
Test that can do a barcode scan
"""
patients = self.patient_list_page.get_list_items()
patient_to_test = patients[0]
patient_id = patient_to_test.get_attribute('href').replace(
PATIENT_PAGE, ''
)
id_to_use = self.patient_list_page.patient_scan_helper(int(patient_id))
self.patient_list_page.do_barcode_scan(id_to_use['other_identifier'])
def test_view_patient_details(self):
"""
Test that clicking on a work item tasks user to carry out the task
"""
patients = self.patient_list_page.get_list_items()
patient_to_test = patients[0]
patient_url = patient_to_test.get_attribute('href')
patient_to_test.click()
self.assertTrue(PageConfirm(self.driver).is_patient_page(),
'Did not get to patient page correctly')
self.assertEqual(self.driver.current_url, patient_url,
'Incorrect url')
def test_patient_name_in_list(self):
"""
Test that the patient name is in the list item
"""
patients = self.patient_list_page.get_list_items()
patient_to_test = patients[0]
task_id = patient_to_test.get_attribute('href').replace(
PATIENT_PAGE, ''
)
task_data = self.patient_list_page.patient_helper(task_id)[0]
name_to_use = task_data['full_name']
patient_name = self.driver.find_element(
*list_page_locators.LIST_ITEM_PATIENT_NAME
)
self.assertEqual(patient_name.text, name_to_use.strip(),
'Incorrect name')
def test_patient_location_in_list(self):
"""
Test that the patient name is in the list item
"""
patients = self.patient_list_page.get_list_items()
patient_to_test = patients[0]
task_id = patient_to_test.get_attribute('href').replace(
PATIENT_PAGE, ''
)
task_data = self.patient_list_page.patient_helper(task_id)[0]
location = task_data['location']
parent_location = task_data['parent_location']
bed_to_use = '{0}, {1}'.format(location, parent_location)
patient_location = self.driver.find_element(
#.........这里部分代码省略.........
示例3: TestTaskPagePatientInfo
# 需要导入模块: from openeobs_mobile.list_page import ListPage [as 别名]
# 或者: from openeobs_mobile.list_page.ListPage import go_to_task_list [as 别名]
class TestTaskPagePatientInfo(TestCommon):
"""
Setup a session and test that the patient info is correct
"""
def setUp(self):
self.driver.get(MOB_LOGIN)
self.login_page = LoginPage(self.driver)
self.list_page = ListPage(self.driver)
self.task_page = TaskPage(self.driver)
self.login_page.login(NURSE_USERNM1, NURSE_PWD1)
self.list_page.go_to_task_list()
tasks = self.list_page.get_list_items()
task_to_test = tasks[0]
self.task_url = task_to_test.get_attribute('href')
self.driver.get(self.task_url)
def test_can_logout(self):
"""
Test that the title of the login page is Open-eObs
"""
self.task_page.logout()
self.assertTrue(PageConfirm(self.driver).is_login_page(),
'Did not get to the logout page correctly')
def test_can_go_to_task_list_page(self):
"""
Test that can go to task list page
"""
self.task_page.go_to_task_list()
self.assertTrue(PageConfirm(self.driver).is_task_list_page(),
'Did not get to the task list page correctly')
def test_go_to_patient_list_page(self):
"""
Test that can go to the patient list page
"""
self.task_page.go_to_patient_list()
self.assertTrue(PageConfirm(self.driver).is_patient_list_page(),
'Did not get to patient list page correctly')
def test_can_go_to_stand_in_page(self):
"""
Test that can navigate to the stand in page
"""
self.task_page.go_to_standin()
self.assertTrue(PageConfirm(self.driver).is_stand_in_page(),
'Did not get to stand in page correctly')
def test_can_carry_out_barcode_scan(self):
"""
Test that can do a barcode scan
"""
task_id = self.task_url.replace(
TASK_PAGE, ''
)
id_to_use = self.task_page.task_scan_helper(int(task_id))
self.task_page.do_barcode_scan(id_to_use['other_identifier'])
def test_patient_info_name(self):
"""
Test that can get the patient info popup on pressing patient name
"""
patient_name_button = self.driver.find_element(
*PATIENT_NAME_LINK
)
patient_id = patient_name_button.get_attribute('patient-id')
popup = self.task_page.open_patient_info()
popup_header = popup.find_element(
*PATIENT_INFO_POPUP_TITLE
)
patient_data = self.task_page.patient_helper(int(patient_id))[0]
popup_title = '{0} {1}'.format(patient_data['full_name'],
patient_data['gender'])
self.assertEqual(popup_title, popup_header.text.replace('\n', ' '),
'Incorrect popup name')
def test_patient_info_button(self):
"""
Test that can get the patient info popup on pressing patient name
"""
patient_name_button = self.driver.find_element(
*PATIENT_NAME_INFO
)
patient_id = patient_name_button.get_attribute('patient-id')
popup = self.task_page.open_patient_info()
popup_header = popup.find_element(
*PATIENT_INFO_POPUP_TITLE
)
patient_data = self.task_page.patient_helper(int(patient_id))[0]
popup_title = '{0} {1}'.format(patient_data['full_name'],
patient_data['gender'])
self.assertEqual(popup_title, popup_header.text.replace('\n', ' '),
'Incorrect popup name')
def test_press_obs_data_button(self):
"""
Test that pressing the 'View Patient Observation Data' shows the
#.........这里部分代码省略.........