01-24-2012, 12:32 AM
I have an issue, using the code:
Found even the hidden links on my page, so the code errored due to many matching links.
So, I tried the code:
but i am getting a object type m,issmatch error.
Any thoughts on what I might be doing wrong?
thx for looking.
Code:
With Browser("Wisdom").Page("Wisdom IA").Frame("parent")
absY = .Link("name:="&ReportName, "visible:=True").GetROProperty("abs_x")
absY = .Link("name:="&ReportName, "visible:=True").GetROProperty("abs_y")
.Link("name:="&ReportName, "abs_x:="&absX, "abs_y:="&absY ).Click
End With
Found even the hidden links on my page, so the code errored due to many matching links.
So, I tried the code:
Code:
Set TableObj = Browser("Wisdom").Page("WisdomLogin").Frame("parent").WebTable("html id:=NestedGrid1")
Set LinkObj = TableObj.ChildItem("Link")
LinkName = LinkObj.GetROProperty("innerText:="&ReportName)
absX = LinkObj.GetROProperty("abs_x")
absY = LinkObj.GetROProperty("abs_y")
but i am getting a object type m,issmatch error.
Any thoughts on what I might be doing wrong?
thx for looking.