How to get all the objects count and objects names in
webpage using QTP ?
Answers were Sorted based on User's Feedback
Answer / devi
Set b=description.Create
b("micclass").value="Browser"
Set obj=desktop.ChildObjects(b)
msgbox obj.count
'browser("CreationTime:=4").close
For i=0 to obj.count-1
msgbox i
c=obj(i).getroproperty("name")
msgbox c
Next
| Is This Answer Correct ? | 9 Yes | 4 No |
Answer / sai
Dim a(100)
set p=Browser("Home").Page("Home").ChildObjects
cnt=0
For i=0 to p.count-1
b=p(i).GetTOProperty("micclass")
If i<1 Then
a(0)=b
Else
For j=0 to Ubound(a)-1
If a(j)<>b Then
cnt=cnt+1
a(cnt)=b
End If
Next
End If
Next
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / chandu
Hi kumar...
thanx for ur response man..
r u working on QTP..if yes can i hav ur email id..so that
if i get any doubts i'll get in touch with u..
Thanks in Advance
Chandu
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / chandu
u can count the objects in a webpage by using childobjects
method
set childobjs=Browser("BrowserName").Page
("PageName").childobjects
total=childobjs.count
msgbox total
n i don't know how to get the names...sorry..if u know
plese let me know
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / chivukula.kumar
Hi Chandu,
ChilObjs=Browser("BrowserName").Page
("PageTitle").Childobjects
tol=Chilobj.count
for i = 0 to UBound(tol)
a =chilObjs(i).Name
print a
Next
| Is This Answer Correct ? | 3 Yes | 23 No |
what is the general issues faced while using automation tool Qtp9.0
Could anyone please tell me one situation where you have used recovery scenarion in real time with an example?
What is driver script and driver script in qtp frame work????
How to customize checkpoints with parameters?
What are the features of quick test pro(qtp)?
I have the following Doubts Please clarify me with examples? 1.Could QTP cover entire application? or part of the application? 2.Shall we rewrite(modify) the Manual testcase to automate? 3.How can I execute my scripts through client mechine which is not having QTP installation 4.Few objects are not being identified by QTP afeter one month. what could be the reason for this (I am using trail version of 15 days)
Explain how to use QTP to check broken links on a page?
What is a Web Table?
Can any body tell me how can I choose the share object repository and per action object repository mode. Please give me with steps.
I want to run my qtp scipt on the system where qtp is not installed .I don't want to install qtp but i want that system should use the qtp from another system in lan just the qtp instance should be launched on that system without having qtp installed on it .I probably know the solution that it will be solved through RMI but how to get this problem solved plz help i anyone know the answer
For which type of project the iterative model is suitable?
What is the difference between Functions and Action ?