How will u find that how many List boxes( and check boxes)
are present in one particular window
Answers were Sorted based on User's Feedback
Hi,
try this code...
set odesc = discription.create
odesc("Class Name").value ="WinCheckBox"
odesc("native class").value="Button"
set checkboxcount= window("<window name>").childobjects
(odesc)
counts=checkboxcount.count
msgbox counts
u will get number in msgbox.
please ping me if there is any feedback.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / nanda
Hi,
try this code... i did some spelling mistake in above
answer..pls change that..
discription=description
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / akila
hi,
i tried this script. it's working fine but not giving
appropriate checkbox in the application
| Is This Answer Correct ? | 1 Yes | 0 No |
HI Every bodey,---
Any object present in the page is known as childobject.
Ex:-Link,Web Edit,Check Box,Web button,List box,etc...
If u want to coun the Listboxes (or)Check boxes you can
write below script.
---------CODE----------
set ochbox=description.create
ochbox("micclass").value="checkbox"
set chobj=Browser().Page().childobjects(ochbox)
n=chobj.count
msgbox n '(here you can get how many check boxes there in a
page)
for i=o to n-1
val1=chobj(i).getroproperty("innertext","name")
msgbox val1
next
-----------End---------
In the same way we can find Links,Webbuttons,Listboxes,etc..
Any doubts----mail to----mskalyan.smile@gmail.com
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / venkatesh
Set oPageObject = Browser("browsername").Page
("pagename").Object
Set oTableObject = oPageObject.getElementsByTagName
("list")
iTotalTbl = oTableObject.length
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ramya
'Counting total number of lists
Set Odesc= Description.Create
Odesc("htmltag").value= Input
Set linkcollection= Browser("").page("").childobjects(Odesc)
Itemcount=linkcollection.count()
msgbox Itemcount
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / softwaretester4u
very intresting question,but i never found in QTP my
experience .pls tell me if any one knows
| Is This Answer Correct ? | 0 Yes | 2 No |
Hello Everybody, Please tell me the concept of recovery management in QTP by giving any practical example of it. Thanks, Gaytri
what is object and child object.. explain ..if possible give some example for better understanding ..
How Does Run time data (Parameterization) is handled in QTP?
Diff between WEB APPLICATION AND CLIENT-SERVER APPLICATION?
Hello everybody, can we maintain the state of page in QTP? 1. suppose i opened a notepad text file i entered some text and changed the font type and font size and saved that file. 2. Now next time when i will open a new notepad file it is showing me that font type and size which i changed in my previous step. 3. Here i want that QTP should capture the default setting i.e. it should maintain the state of the page. Thanks in advance, Gaytri
How can I change object description or check point values in qtp?
which command u will use to access the application through descriptive programing?
What is the difference between low level recording and analog recording mode when it will be enabled.
Hi, I am new to QTP and vb.script.How to start to write vb.script in QTP? Please give me suggestions?
tell me abt a time when u had to go above &beyind the call of duty to get the job done
What is the difference between gettoproperty and settoproperty?Explain with an example?
wht is Automation testing frame work. pls explain it