If there are 100 checkboes in a page then how can we select 10th & 11th & 14th chexkboxes at once through descriptive programing in QTP using vb script.
Please send the answers...

Answers were Sorted based on User's Feedback



If there are 100 checkboes in a page then how can we select 10th & 11th & 14th chexkboxes at..

Answer / ayushi saxena

set ocheck=description.create
ocheck("micclass").Value="WebCheckBox"
set checkcol=browser("micClass:=Browser").page("micClass:=Page").childobjects(ocheck)
for i=0 to checkcol.count -1
if i=9 OR i=10 OR i=13 then
checkcol(i).set "ON"
end if 
next 

Is This Answer Correct ?    8 Yes 0 No

If there are 100 checkboes in a page then how can we select 10th & 11th & 14th chexkboxes at..

Answer / veeru

Below code saves sometime

set ocheck=description.create
ocheck("micclass").value="WebCheckbox"
set objCheckboxes = browser("Creationtime:=0").page("micclass:=page").childobjects(ocheck)
objCheckboxes(9).Set "ON"
objCheckboxes(10).Set "ON"
objCheckboxes(13).Set "ON"

Is This Answer Correct ?    2 Yes 0 No

If there are 100 checkboes in a page then how can we select 10th & 11th & 14th chexkboxes at..

Answer / vamshi

browser("title:=.*").page("title:=.*").webcheckbox("name:=.*","index:=9").set "on"
browser("title:=.*").page("title:=.*").webcheckbox("name:=.*","index:=10").set "on"
browser("title:=.*").page("title:=.*").webcheckbox("name:=.*","index:=13").set "on"
because index value starts from zero

Is This Answer Correct ?    1 Yes 2 No

If there are 100 checkboes in a page then how can we select 10th & 11th & 14th chexkboxes at..

Answer / ranga

set ocheck=description.create
ocheck("micclass")="webCheckbox"
set checkcol=browser().page().childobjects(ocheck)
for i=0 to checkcol.count -1
if i=9 and i=10 and i=13 then
checkcol(i).set "ON"
end if 
next 

Is This Answer Correct ?    3 Yes 8 No

If there are 100 checkboes in a page then how can we select 10th & 11th & 14th chexkboxes at..

Answer / johnson

set ocheck=description.create
ocheck("micclass")="webedit"
set checkcol=browser().page().childobjects(ocheck)
for i=0 to checkcol.count -1
if i=10 and i=11 and i=14 then
checkcol(i).set "ON"
end if
next

Is This Answer Correct ?    1 Yes 16 No

Post New Answer

More QTP Interview Questions

Analyzing the Checkpoint results ?

1 Answers   Crea,


What is method name to compare two XML files.

0 Answers  


How to insert screenshot on to the body of outlook? -1 how to use insert-picture tab in new email outlook to insert image in the body. Suggest something.......

1 Answers  


how to idetfy which test cases are automated?who will deside that plz tell me

0 Answers  


How to save your test using quicktest professional (qtp)?

0 Answers  






How do you create a library file

2 Answers  


Explain how you can delete excel file in qtp?

0 Answers  


Where is the Bitmap checkpoint information stored?

0 Answers   Ordain Solutions,


Define Error Pane of UFT?

0 Answers  


Please explain me frameworks & how to generate the scripts in framework

0 Answers   ADP,


can anyone please tell me what are all the shortcut keys used for qtp9.2? Thanks in advance..i expect ur valuable reply that help us our team???

1 Answers  


Explain script generated after applying database check point?

2 Answers  


Categories