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 are the differences between sub procedures and function procedures?
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 about adodb.stream class?
How to remove the spaces in a string Ex: "this is apple"
What are string functions in vbscript?
There are 5 web pages.write a script to click the button on 4th web page.
how to increase the values in text box in a given text box increament by two values by clicking on button
When does ‘on click of button’ event gets triggered in the vbscript language?
write a vb script to generate fibonnaci numbers
How to scroll down a page while recording in qtp. suggest me any method apart from low level recording.
Find Out Length of an array without using Ubound?
write a vb script to calculate factorial of a number?