There is a web Table where You will find Two Columns
First Column consist of Check box and Second column consist
of Test cases ID(Viz T1,T2,T3....Etc); If You select any
Test case ID, respective Check boxes to be checked write a
VBSCRIPT for this scenario?
Answer / prathibha
rc=Browser().Page().webtable().rowcount
for i=1 to rc
cc=Browser().Page().webtable().columncount(i)
for j=1 to cc
if Browser().Page().webtable().getcelldata(r,c)="T1" or "T2" or "T3" then
set Owebchkbox=Browser().Page().webtable().getchilditem(r,c,"webcheckbox",index:=0)
Owebchkbox.set "on"
end if
next
next
Steps:- 1.Intially I'm trying to find the rowcount
2.iterate the no.of rows we have
3.find no.of columns we have for the row
4.iterate that from starting column with that row
5.find cell data value with getcelldata(r,c)="T1"or "T2"..etc
6.when it matches at that point get the childitem object with that row and column corresponding to the row and column no.where we had matched T1 or T2 ...
7.After obtaining the child item object ..do the necessary operation on it .like in our case we have to set it to on
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain what is loose binding? Why is it not a good practice to use it?
write a vb script to display the size of the folder,date created and name of the folder
please can you help me to get a code of flames using a visual basic 6
Explain the functionality of vbscript?
what is used of Property........End Property loop ? how to write the script for it?
How to get the length of the string by making use of the string function?
plz give ans to this in vb script........ "krishna radha" i want to print this string "Radha Krishna" like this
write a vb script to generate fibonnaci numbers
How to make sure that items in a wintree are sorted al?
What's the difference between vbscript and vb.net?
how to write a vb script in QTP for yahoo registration form, i want to check the performance also like performance test, stress, load test like that.
Explain How do you create a recordset object in vbscript?