Prepare for your Next Interview
This is a discussion on Geting data from odd rows of an excel sheet, within the WinRunner forums, part of the Software Testing category; If i am in the database testing with wirnunner tool, if i want to the get the data only from the odd rows of an excel sheet, What is the ...
|
|||
|
Geting data from odd rows of an excel sheet,
If i am in the database testing with wirnunner tool,
if i want to the get the data only from the odd rows of an excel sheet, What is the statements i have to add to the TSL? Pls give with an example. Thanks in advance NOTE [This question was asked by prasad.gandra] |
| Sponsored Links |
|
|||
|
Re: Geting data from odd rows of an excel sheet,
Just a small logical change is needed to solve this problem.
Eg: ****************** for(i=1;i<=n;i++) { ddt_set_row(t,i); set_window ("Inputs", 2); a=ddt_val(t,"I1"); b=ddt_val(t,"I2"); edit_set("ThunderTextBox",a); edit_set("ThunderTextBox_1",b); button_press ("Ok"); edit_check_info("ThunderTextBox_2","value",a+b); } ****************** This 'for' loop takes values from 2 columns of Excel sheet (I1 and I2) and adds them in the application after clicking 'OK' button. Then it checks the application output (Actual, 'value') with Expected (a+b). Now, here if you want WinRunner to get the data only from odd rows of the Excel sheet then just change counter increment part of 'for' statement. It can be changed as below: for(i=1;i<=n;i=i+2) This 'for' loop is executed with values of 'i' in the following series 1,3,5,7,9.......................... This is one way to get what you want. There are many more ways. ![]()
__________________
Lack of WILL POWER has caused more failure than lack of INTELLIGENCE or ABILITY. -sutnarcha- |
|
|||
|
Re: Geting data from odd rows of an excel sheet,
for(i=1;i<=n;i=i+2)
{ ddt_set_row(t,i); set_window ("Inputs", 2); for (j=1;j<=255;j++) { a=ddt_val(t,"j"); b=ddt_val(t,"j+1"); edit_set("ThunderTextBox",a); edit_set("ThunderTextBox_1",b); button_press ("Ok"); edit_check_info("ThunderTextBox_2","value",a+b); } } the above for loop will add odd rows of the columns from 1 to 256. (as the excel has 256 columns) |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Automating Excel Formulaes | JobHelper | QTP | 2 | 02-19-2008 03:11 AM |
| Display n-1 rows from a table | dbtester | SQL Server | 3 | 02-07-2008 08:11 AM |
| reading data from excel sheet in QTP | JobHelper | QTP | 4 | 09-11-2007 07:33 AM |
| 100 test cases from TD into an excel sheet | Lokesh M | Test Director | 2 | 12-23-2006 04:20 AM |
| Code for getting data from excel sheet | JobHelper | WinRunner | 0 | 12-20-2006 07:08 PM |