|
刚开始学习QTP,做了一个总是不识别对象,总是报错,错误如下:
Cannot identify the object "arrPort" (of class WebList). Verify that this object's properties match an object currently displayed in your application
我的代码如下:
Browser("销售系统").Page("销售系统").WebEdit("userid").Set "cos"
Browser("销售系统").Page("销售系统").WebEdit("passwd").SetSecure "486839179f66dc99"
Browser("销售系统").Page("销售系统").Link("登 录").Click
Browser("销售系统").Page("网上销售系统").Frame("menu").Link("国际客票").Click
Browser("销售系统").Page("网上销售系统").Frame("menu").Link("在线预定").Click
Browser("销售系统").Page("网上销售系统").Frame("main").WebRadioGroup("flightType").Select "1"
Browser("销售系统").Page("网上销售系统").Frame("main").weblist("depPort").Select"Guang zhou 广州"
Browser("销售系统").Page("网上销售系统").Frame("main").weblist("arrPort").Select"BANGKOK 曼谷"
Browser("销售系统").Page("网上销售系统").Frame("main").Image("calendar").Click
Page("Page").WebElement("<<").Click
Browser("销售系统").Page("网上销售系统").Frame("main").Link("散客订票").Click
Browser("销售系统").Page("网上销售系统").Frame("main_2").WebRadioGroup("cb_type").Select "citytime_cb1"
Browser("销售系统").Page("网上销售系统").Frame("main_2").WebList("Select1").Select"Guang zhou 广州"
Browser("销售系统").Page("网上销售系统").Frame("main_2").WebList("Select1_2").Select"BANGKOK 曼谷"
Browser("销售系统").Page("网上销售系统").Frame("main_2").Image("calendar").Click
Page("Page_2").WebElement("<<").Click
Browser("销售系统").Page("网上销售系统").Frame("main_2").Link("机票查询").Click
Browser("销售系统").Page("网上销售系统").Frame("main_2").WebElement("WebTable").Click
Browser("销售系统").Page("网上销售系统").Frame("main_2").Link("下一步").Click
Browser("销售系统").Page("网上销售系统").Sync
Browser("销售系统").Close
哪位高手可以指导一下啊? |
|