本文整理汇总了Python中unit.ewslib_testcase.LIB._get_ee_button方法的典型用法代码示例。如果您正苦于以下问题:Python LIB._get_ee_button方法的具体用法?Python LIB._get_ee_button怎么用?Python LIB._get_ee_button使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类unit.ewslib_testcase.LIB
的用法示例。
在下文中一共展示了LIB._get_ee_button方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_get_ee_button_by_name_and_widget
# 需要导入模块: from unit.ewslib_testcase import LIB [as 别名]
# 或者: from unit.ewslib_testcase.LIB import _get_ee_button [as 别名]
def test_get_ee_button_by_name_and_widget(self):
self.navigate(data.PD_URL)
ee= LIB._get_ee_button(widget_name="My Details",button_name="30000309_GAMO_GL_WA_PA_HR Admin")
self.assertEquals("central_css test_employeeColorIcon eeColor02", ee.get_attribute("class"))
ee= LIB._get_ee_button(widget_name="My details",button_name="30000309")
self.assertEquals("central_css test_employeeColorIcon eeColor02", ee.get_attribute("class"))
示例2: test_get_ee_button_with_no_name_returns_first_on_the_page_or_widget
# 需要导入模块: from unit.ewslib_testcase import LIB [as 别名]
# 或者: from unit.ewslib_testcase.LIB import _get_ee_button [as 别名]
def test_get_ee_button_with_no_name_returns_first_on_the_page_or_widget(self):
self.navigate(data.PD_URL)
ee = LIB._get_ee_button()
self.assertEquals("central_css test_employeeColorIcon eeColor02", ee.get_attribute("class"))
ee = LIB._get_ee_button(widget_name="My Details")
self.assertEquals("central_css test_employeeColorIcon eeColor02", ee.get_attribute("class"))