03-01-2009, 11:42 PM
Hello,
Please read the following script
When the Browser("title:=.*").back is executed, there is a error message:"The "[ Browser ]" object's description matches more than one of the objects currently displayed in your application. Add additional properties to the object description in order to uniquely identify the object."
How can we identify the current browser after Links(3).click without using additional properties?
Thank you.
Please read the following script
Code:
Set oDesc = Description.Create()
oDesc("micclass").Value = "Link"
Set Links = Browser("title:=Google").Page("title:=Google").ChildObjects(oDesc)
Msgbox "Total links: " & Links.Count
Links(3).click
Browser("title:=.*").back
When the Browser("title:=.*").back is executed, there is a error message:"The "[ Browser ]" object's description matches more than one of the objects currently displayed in your application. Add additional properties to the object description in order to uniquely identify the object."
How can we identify the current browser after Links(3).click without using additional properties?
Thank you.