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 |
There are 5 web pages.write a script to click the button on 4th web page.
How are values assigned to the variables in the vbscript language?
How to access array data?
* ** *** Please write a code to get output like above diagram? ple explain as it how the code works?
Which operator can be used to check if two numbers are equal or not in vbscript?
compare the string without using stringcomp function?
how to validate the text in a web table
What is sql loader? Explain the files used by sql loader to load file?
To get data from table which method will be used in QTP
What is the use of the formatdatetime function in the vbscript language?
VBscript for QTP,best tutorial?
What is the difference between function and procedure?