how to get the object count ?????????
Answers were Sorted based on User's Feedback
Answer / prasad.dasagrandhi
iam using QTP 9.2
in a cal appli i have add,sub,mul,div buttons to get the
count i have written this script
but it is showing count is o, can anybody help me
systemutil.Run"C:\Users\Raju\Desktop\cal.exe"
Set desc =Description.Create()
desc("micclass").Value = "Button"
set button=vbwindow("vbname:=CALCULATOR").vbbutton
("vbname:=ADD").ChildObjects(desc)
a= button.count
msgbox (a)
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / prakash pandey
set desc=description.create
desc("micclass").value="WinEdit"
set
childobject=browser("google").page("google").childobjects(desc)
msgbox childobject.count
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / karthik
Option explicit
Dim childs, n, odesc
systemutil.Run "C:\WINDOWS\system32\calc.exe"
Set odesc=description.Create
odesc("micclass").value="WinButton"
set childs= Window("text:=Calculator").childobjects(odesc)
n=childs.count
print "number of buttons is "&n
Window("text:=Calculator").Close
The above script perfectly gives you with the answer. Just
copy and Paste it in your QTP and run it. NO modifications
required
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / barani
systemutil.Run"C:\Users\Raju\Desktop\cal.exe"
Set ODesc = Description.Create
ODesc("micclass").value = "Winbutton"
set ChldODesc = Window
("regexpwndtitle:=Calculator").ChildObjects(ODesc)
print ChldODesc.count
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / arjuncr
dear raju it is wrong
systemutil.Run"C:\Users\Raju\Desktop\cal.exe"
Set desc =Description.Create()
desc("micclass").Value = "Button"
set button=vbwindow("vbname:=CALCULATOR").vbbutton
("vbname:=ADD").ChildObjects(desc)
a= button.count
msgbox (a)
this one is correct
systemutil.Run"C:\Users\Raju\Desktop\cal.exe"
Set desc =Description.Create
desc("class Name").Value = "Button"
set button=window("regexpwndtitle:=CALCULATOR").ChildObjects
(desc)
msgbox desc.count
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nagk24
cnt=0
Set d=description.Create
d("micclass").value="WinEdit"
Set a=window("text:=Flight Reservation").ChildObjects(d)
For i=0 to a.count-1
cnt=cnt+1
Next
msgbox cnt
| Is This Answer Correct ? | 1 Yes | 1 No |
What are the different types of checkpoints?
X flies from Hyd to bangalore using different methods of transportation. write the test scenarios and test cases for this?
hi all, I have installed QTP successfully on windows vista. I am able to record and run on windows applications, but facing problem with web applications. While recording, I am able to open the web application, but when I click on any object or give login name and password, the events are not getting recorded in QTP. Could anyone solve the problem. Any settings to be done for web applications other than selecting web-addin? Waiting for replies. Thanks in advance.
Actually what is Quality center..is it Test Director or some other tool..Anybody can expalain it in detail..Thanks in advance..
give me the code for check point for validating application
What are FAST and NORMAL modes in qtp ? Why r these modes intended for ?
Is any limitation to xml checkpoints?
can any body tell me all of the release dates of QTP?????..... thanks in adv!
What is exact meaning of Database Checkpoint in QTP 9.2 and what are the different types of the database check points?
what is main difference between QTP 8.2 AND QTP 9.0/9.2 HOME PAGE?i mean what are extra thing in QTP 9.0 than in QTP 8.2?
There is an excel file of 1 to 100 sheets how you will iterate through it?
In qtp,how to interact tool & application build?