For example one window is there the window contain some of
Check boxes but my question is how many check boxes are
there particular window?
Please solve the problem
gi_raju@rediffmail.com
ippaliraju@yahoo.co.in
Answers were Sorted based on User's Feedback
set objcheckbox = description.create
objcheckbox("class name").value = "WinCheckbox"
objcheckbox("nativeclass").value = "Button"
set get_checkbox = window("XXXX").childobjects(objcheckbox)
count_checkbox = get_checkbox.count
'msgbox count_checkbox
if u want to know the name of each and every checkbox..
for i = 0 to count_checkbox-1
check_name = get_checkbox(i).getROProperty("text")
msgbox check_name
next
If any queries...
nanda.dreddy@gmail.com
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / testguru
question is not clear.If you can repeat the question with
some more details there might be possible solution for it.
Always be positive.
waiting for the question?
Is This Answer Correct ? | 0 Yes | 0 No |
By using QTP can we record any log files written by the application which is in execution?
What is post recovery scenario?
hi i am working with vbwindow on qtp.first i am openning qtp whenever open qtp my application not open that time generated error like "Runtime error 0" and fatal error:automation error how to solve this problem pls tell me
Under what conditions would you recommend QTP for future projects?
in qtp if we record a object and we record the object using virtual wizard then by which way the object is recognized that means recorded
difference between waitProperty & Checkproperty
Syntax for how to call one script from another? and Syntax to call one "Action" in another?
How can i open a file in Textpad and replace a string with another using QTP
After running scripts how you report results ,there is any specific report form
What is Curd testing?
Explain data driven framework?
In a flight window we have to enter the name and meal request for every passenger.In that window if we give Total passengers=1 then the Psngr1 name field and psngr1 meal request field will reflects.if we give Total passengers=2 then Psngr1 name field and psngr1 meal request field,Psngr2 name field and psngr2 meal request field will reflects and so on.if total psngrs=100 then will we capture all the fields for the psngrs to Automate the app how we can handle this scenerio thru Descriptive programming?