Hi Lorena,
Sometimes, the Descriptive programming doesn't work as we want although the code looks absolutly fine. Ur code is
I am not sure why is it so.
Can u plz chk if the below code works for u...
try the below descriptive programming
'Description for Browser and page
and Use the Below code
I hope this would work.
Sometimes, the Descriptive programming doesn't work as we want although the code looks absolutly fine. Ur code is
I am not sure why is it so.
Can u plz chk if the below code works for u...
Code:
if Browser("W").Page("WIA").Frame("parent").Link("name:="& ReportName).Exist Then
Browser("W").Page("WIA").Frame("parent").Link("name:="& ReportName).Click
End IF
try the below descriptive programming
'Description for Browser and page
Code:
Set objBrowser=Description.create
objBrowser("title").value=".*"
'Description for frame
Set ObjFrame=Description.create
ObjFrame("name").value="parent"
'Description for the Link
Set ObjLink=Description.create
ObjLink("html tag").value="A"
ObjLink("text").value=ReportName ' the value fethced frm the excel
and Use the Below code
Code:
Browser(ObjBrowser).Page(ObjBrowser).Frame(ObjFrame).Link(ObjLink).Click
I hope this would work.