web_report_data_point(原创)
web_report_data_point
1.功能
用户自定义报表
2.属性
web_report_data_point(EventType,EventName,DataPointName)
EventType: 指事物的类型。目前只支持"Error"类型。即EventType=Error。注意:在RunTime Setting中,设置,“error on continue”。
EventName: 报表的名字。目前只支持"StepTimeOut",即EventName=StepTimeOut .
DataPointName:用户自定义类型,用来说明数据点的名字。表达方式为:DataPointName=string
3.生成报表
分别在controll和analysis中都能看到该图。
4.例子:
1.功能
用户自定义报表
2.属性
web_report_data_point(EventType,EventName,DataPointName)
EventType: 指事物的类型。目前只支持"Error"类型。即EventType=Error。注意:在RunTime Setting中,设置,“error on continue”。
EventName: 报表的名字。目前只支持"StepTimeOut",即EventName=StepTimeOut .
DataPointName:用户自定义类型,用来说明数据点的名字。表达方式为:DataPointName=string
3.生成报表
分别在controll和analysis中都能看到该图。
4.例子:
//设置1s后就算超时
web_set_timeout("Step", "1");
"URL=http://cnblogs.com/morebetter/",
web_report_data_point( "EventType=Error" , "EventName=StepTimeOut" , "DataPointName=timeout" , LAST);