hi i have one isuue on selecting webcheckbox .there are 15
wecheckboxex i want to select every time 9 th one how can i
select plese help me
regards
balaji
Answers were Sorted based on User's Feedback
Answer / deep
HemaKumar has given your answer but has written the code
for WebList by mistake.
You can use this:
Browser("title:=.*").Page("title:=.*").WebCheckbox
("name:=account type","index:=8").Set "On"
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / hemakumar.m
Use index property.
Ex:
Browser("title:=.*").Page("title:=.*").WebList
("name:=account type","index:=8").Select "value"
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / raghavender
We Can check the webcheck box by using its Index number in
the application.
Browser().page().Webcheckbox("Name:=Chekbox name","index:=9
or 8").select
OR
We Can also Add all the check boxes To the Object
repository based on the Index numbers and select them in
the Code by writing
Browser().page().webCheckbox().select "ON"
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / manoj kumar
'Create teh object of Browser
set brow_obj = description.Create
brow_obj("title").value = "Google Accounts"
'Create the object description for Checkbox
Set chk_obj = description.Create
chk_obj("html tag").value = "INPUT"
chk_obj("type").value = "checkbox"
'Find out the all check box on page
Set ocheckbox = Browser(brow_obj).page
(brow_obj).ChildObjects(chk_obj)
'Count the no of check box
intcountobj = ocheckbox.count
'Select only two check box on page
For i = 0 to 8
ocheckbox(i).set "ON"
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
What exactly is the difference among all the three recording modes.
Please can you give where can we get good QTP Training at Hi-Tech city Hyderabad?
How does qtp identify objects in the application?
What is accessibility check point?
How did you use regular expressions in QTP and also in WR?
Explain about random testing of 500 test cases?
hen do start automation testing after manual testing
what is the diff between manual test plan document and automation test plan doc.can u explain indetail.
What is Step generator in qtp? wt is the use? can u any body explain me? plz
What is difference between Class and MicClass
What is FRAME WORK? How many Frameworks can QTP supports?
Hi frens! I am testing VB project with MS Access database. At add button click my record is storing in data table and it is shown in datagrid. So at Delete button click i want to check datagrid rows 9before and after delete). so how can i do it using descriptive programming?