Hi,
i would like to write a following functionality in descriptive
i need to select an item in Inbox(gmail), it shows as web element inside the table
Browser("name:= Inbox.*").Page("title:= Inbox.*")......?????????
attached screenshot(i just want to select an item in Inbox)
Regards,
Thrinath
--
--
You received this message because you are subscribed to the Google
"QTP - HP Quick Test Professional - Automated Software Testing"
group.
To post to this group, send email to Mercu...@googlegroups.com
To unsubscribe from this group, send email to
MercuryQTP+...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/MercuryQTP?hl=en
---
You received this message because you are subscribed to the Google Groups "QTP - HP Quick Test Professional - Automated Software Testing" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mercuryqtp+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Hi,This above scenario we have handle with DP( Descriptive Programming), below is the codeWe have to pass which Checkbox you want to click and compare with the expected and then select it using DPSet ODesc= Description.CreateODesc("miccalss").value="Weblink"ODesc("htmltag").value="A"Set Childitem=Browser("name:= Inbox.*").Page("title:= Inbox.*").webtable("name:=Inbox.*").ChildObjects(ODesc)For i=0 to Childitem.Count-1ChildName=Childitem(i).GetRoProperty("name")If Ucase(ChildName)=Ucase("Select") ThenChilditem(i).Set "ON"Exit ForEnd IfNextSet ODesc =NothingPlease let me know if you have any concerns on this