本文整理汇总了Python中unit.ewslib_testcase.LIB.euh_navigate_to_specific_tab方法的典型用法代码示例。如果您正苦于以下问题:Python LIB.euh_navigate_to_specific_tab方法的具体用法?Python LIB.euh_navigate_to_specific_tab怎么用?Python LIB.euh_navigate_to_specific_tab使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unit.ewslib_testcase.LIB
的用法示例。
在下文中一共展示了LIB.euh_navigate_to_specific_tab方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_navigate_to_specific_tab_ignores_tab_if_not_specified
# 需要导入模块: from unit.ewslib_testcase import LIB [as 别名]
# 或者: from unit.ewslib_testcase.LIB import euh_navigate_to_specific_tab [as 别名]
def test_navigate_to_specific_tab_ignores_tab_if_not_specified(self):
self.assertRaisesRegexp(RuntimeError,
"could not find element with text = , dummy_class = test_tabs, widget = None and index = 0",
LIB._get_euh_tab, " ")
#next line shouldn't throw an error
LIB.euh_navigate_to_specific_tab("workforce administration", "employee data")
示例2: test_navigate_to_specific_tab_clicks_visible_tabs
# 需要导入模块: from unit.ewslib_testcase import LIB [as 别名]
# 或者: from unit.ewslib_testcase.LIB import euh_navigate_to_specific_tab [as 别名]
def test_navigate_to_specific_tab_clicks_visible_tabs(self):
'''this really needs to be tested in the "acceptance test", i.e. on the live system
just doing basic checking making sure we don't throw errors'''
for tab_name in data.TABS.keys() :
LIB.euh_navigate_to_specific_tab("workforce administration", "employee data", tab_name)