51Testing软件测试论坛

标题: 关于link 参数化问题 [打印本页]

作者: chinafree    时间: 2009-9-11 13:08
标题: 关于link 参数化问题
用公司的系统录制的角本如下:

Browser("资源管理信息系统").Page("资源管理信息系统").WebEdit("uname").Set "admin"
Browser("资源管理信息系统").Page("资源管理信息系统").WebEdit("pwd").SetSecure "4aa9ca724d81b3f0e6fd05c61c88b796dc22"
Browser("资源管理信息系统").Page("资源管理信息系统").WebButton("登录").Click
Browser("资源管理信息系统").Page("采购门户").Image("left_title1").Click
Browser("资源管理信息系统").Window("用户单位类型设置 -- 网页对话框").Page("用户单位类型设置").WebButton("取消").Click
Browser("资源管理信息系统").Dialog("Windows Internet Explorer").WinButton("确定").Click
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("topFrame").Link("物资需求").Click
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("leftFrame").WebElement("成本性支出物资需求").Click
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("leftFrame").Link("待办任务").Click
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("mainFrame").WebEdit("taskName").Set "成本需求09090000008"
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("mainFrame").WebButton("查询").Click
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("mainFrame").Link("成本物资需求:10001-需求编号为:成本需求09090000008").Click
现在想把“成本需求09090000008"参数化。

比如换成 成本需求09090000007,成本需求09090000006,成本需求09090000005等等

要求能点击到对应的link,像这样Browser("物资管理信息系统").Page("Material Management Informatio").Frame("mainFrame").Link("成本物资需求:10002-需求编号为:成本需求09090000007").Click
10002是需求单的名称,成本需求09090000007是需求单编号

新手,请教大家脚本如何修改,谢谢大家。

[ 本帖最后由 chinafree 于 2009-9-11 13:23 编辑 ]
作者: bagwell333    时间: 2009-9-11 13:50
就是描述性编程吧,论坛里很多用到。
Link("成本需求"&"0909000000*").click
作者: chinafree    时间: 2009-9-11 13:55
能不能具体说明一下,是不是这样改

Browser("资源管理信息系统").Page("Material Management Informatio").Frame("mainFrame").Link("成本需求"&"0909000000*").click
作者: 风雪夜归人    时间: 2009-9-11 15:02
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("mainFrame").Link("text:=成本物资需求:"& xxx(编号) & "-需求编号为:成本需求" &xxx(编号)).click
试试,如果需要参数化的话,需要操作datatable,你先这样用嘛,自己看下帮助。
其实,论坛这样的例子非常多的,自己站内搜索一下就可以了~
作者: kings727    时间: 2009-9-11 15:22
Browser("资源管理信息系统").Page("Material Management Informatio").Frame("mainFrame").Link("成本物资需求:10001-需求编号为:成本需求09090000008").Click

试试看:
var_link="成本物资需求:10001-需求编号为:"&DataTable("ID", dtGlobalSheet)      
Browser("").Page("").Frame("").Link("").SetTOProperty "text",var_link
Browser("").Page("").Frame("").Link("").Click
作者: chinafree    时间: 2009-9-11 16:10
谢谢两位,我去试试,有问题在请教




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2