How to write a general script which should does the
following
a). If a page object is given, it should identify the page
object of the corresponding page(site).
b). It should identify all the links of that particular
page.
in QTP tool?
Answers were Sorted based on User's Feedback
Answer / arun
if page object is given then..
eg> set pgObj = browser(yahoo).page(yahoo)
pgObj - is the page object
Answers:
1. we can check for the page as follows
tmpPageName = pgObj.getroproperty("name")
if tmpPageName = "Yahoo" then
msgbox "Found the page"
else
msgbox "Page Not found"
end if
2. Need to use description.create function
set descObj = description.create
descObj("micclass").value ="link"
set lnkObj = pgObj.childobjects(descObj)
msgbox lnkObj.count '// This will give you number of links
found in that page
Is This Answer Correct ? | 5 Yes | 2 No |
Answer / isha menon
I dont know the rite answer for this question,. But this
question will be very much useful to know more about the
main testing tool QTP,.
Is This Answer Correct ? | 0 Yes | 2 No |
What is the difference between for loop and while loop?
How can I access an object in another frame?
How to scroll down a page while recording in qtp. suggest me any method apart from low level recording.
How will you get the smallest subscript of an array in vbscript?
generic function for webedit box for web application
How to identify column in VSFlexgrid? My VSFlexgrid window is identified as 'Active X Control'
If anyone knows abt Test Complete material, Pls let me Know. if u have any material or any documents..... Pls mail me on this mail Id...... This is very Urgent Requirment..... for my Project.....
Explain the difference between POST and GET Method.
Can automation testing find ssame no. of bugs what we can find by manual testing?
How to search word in a string without using instring function?
Could Anybody tell me the VBscript for REVERSE an Integer int reverse(int num) Ex:246 to 642
How can I get the value of an object property or variable in another frame?