Micro Focus QTP (UFT) Forums

Full Version: inbox link in yahoomail site
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi i am using QTP10. while i m running below code(in attachement) i m getting runtime error as cannot identify object of class .Link


please provide me the solution

You can try using below code.
By taking dynamic links and clicking on it.

Code:
Set odesc=Description.Create()
odesc("micclass").value="link"

Set links=Browser("").Page("").WebTable("").ChildObjects(odesc)

For i=0 to links.count-1
If links(i).Name="inbox" Then
links(i).Click
End If
Next
Hi,

The inbox link contains a dynamic number i.e. the number of unreaded mails. If this is the case then u can use regular expression in OR 4 the same and then try to execute.

Regards,
Sankalp