def Step_Result(step_data):
sModuleInfo = inspect.stack()[0][3] + " : " + inspect.getmoduleinfo(__file__).name
CommonUtil.ExecLog(sModuleInfo, "Function: Step_Result", 1)
try:
if ((1 < len(step_data) >= 5)):
CommonUtil.ExecLog(sModuleInfo,"The information in the data-set(s) are incorrect. Please provide accurate data set(s) information.",3)
result = "failed"
else:
step_result = step_data[0][2]
if step_result == 'pass':
result = "passed"
elif step_result == 'skip':
result = 'skipped'
elif step_result == 'fail':
result = "failed"
return result
except Exception:
return CommonUtil.Exception_Handler(sys.exc_info())
# Performs a series of action or conditional logical action decisions based on user input
BuiltInFunctions.py 文件源码
python
阅读 24
收藏 0
点赞 0
评论 0
评论列表
文章目录