本文整理汇总了Python中action.Action.check_result方法的典型用法代码示例。如果您正苦于以下问题:Python Action.check_result方法的具体用法?Python Action.check_result怎么用?Python Action.check_result使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类action.Action
的用法示例。
在下文中一共展示了Action.check_result方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: run_test
# 需要导入模块: from action import Action [as 别名]
# 或者: from action.Action import check_result [as 别名]
def run_test(self):
""""
Use selenium to open the proper form and start entering the data.
Note: This function is called by every child class.
@TODO: improve exception handling for longitudinal projects
"""
try:
# self.goto_form()
self.goto_form_longitudinal()
stat = ActionStatistic(self.get_class_name())
# for every field enter data as needed...
for action_data in self.data:
action = Action(self.driver, action_data)
success = action.execute()
stat.update(action, success)
#time.sleep(0.5) # uncomment for debugging in the browser
logger.warning(stat.to_string())
self.save_form()
# for every field check if the value was saved properly...
if self.do_check:
logger.info("""\n# Perform data integrity check for form: {}""".format(self.get_display_name()))
for action_data in self.data:
action = Action(self.driver, action_data)
action.check_result()
except UnexpectedAlertPresentException:
alert = self.driver.switch_to_alert()
alert.accept()
logger.warning("skip UnexpectedAlertPresentException {} for {}".format(alert.text, type(self)))