Hi friend
I have query regarding QTP datatable.
I want to insert data in datatable during runtime.
suppose i wrote
datatble.value(1) = "Test data"
so when i run the script it says column(1) doesn't exist.
Then i write something in column A1 manualy and run the
script again.
Now it works fine.
Pls clarify how i can put value in blank cell of datatable.
Answers were Sorted based on User's Feedback
Answer / arun singh
first of all u have to change the column name.
i.e., double click on A and run the program.
got it.
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / rajaputra
Hi,
USE THIS,
datatable.getsheet(1).addparameter"Test",""
datatable(1,1)="Test Data"
Run and see the runtime datatable
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / medena
DataTable.GetSheet(1).AddParameter "Test",""
datatable(3,1)="Data Test1"
DataTable.SetNextRow
DataTable(3,1)="Data Test2"
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / sameer
=======
DataTable(ParameterID [, SheetID]) =NewValue This is what
is specified in data table help.
That means you should use:
DataTable.SetCurrentRow(1)
DataTable(1,dtGlobalSheet) = "Test" ...If you are to insert
data in the first row and first column of global sheet.
I am using the same...n it's working..
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / prashanth
Hi Friend,
Try this...
In the Datatable, in the first row, first column u can
find "A". DoubleClick on "A" and give any name like..."Test"
Now, in the Active Screen...
DataTable.Value("Test", Global)="Test data"
'Now if you want to use the value present in the datable,
in the script...
K=DataTable.Value("Test", Global)
Now, the value "Test Data" is stored in the variable "K"
Thanks,
Prashanth
prashanth.vikey@gmail.com
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / mercy
try putting datatable.value(2.1)="Test data". I have the
same prob...trying to resolve this the same way. will let u
know once done.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / rajasekaran
By using Ouput Values concept we can insert in datatable
during runtime. but we can see the value only in Test
result,select runtime table in left side of he test results
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / sekhar
Hi friends,when we need to insert the values in to datatable
we can write script like
datatable("column name",sheetid)=value
Then the given value will be stored in desired sheet and
given column,
| Is This Answer Correct ? | 0 Yes | 0 No |
Hi I have a doubt in qtp. Can you please clarify my doubt. If we are importing the data from excel sheet in qtp the the script is running the number of row times. I mean if there are 4 rows in excel sheet the script is running 4 times. cant we avoid this. suppose i have tis script: datatable.Import "C:\Documents and Settings\sailaja\My Documents\login1.xls" n = datatable.GetRowCount For i =1 to n systemutil.Run "C:\Program Files\Mercury Interactive\QuickTest Professional\samples\flight\app\flight4a.exe" datatable.SetCurrentRow i Dialog("Login").WinEdit("Agent Name:").Set DataTable ("Username", dtGlobalSheet) Dialog("Login").WinEdit("Password:").Set DataTable ("Password", dtGlobalSheet) Dialog("Login").WinButton("OK").Click Window("Flight Reservation").ActiveX ("MaskEdBox").Type "020209" Window("Flight Reservation").WinComboBox("Fly From:").Select "Frankfurt" Window("Flight Reservation").WinComboBox("Fly To:").Select "Los Angeles" Window("Flight Reservation").WinButton("FLIGHT").Click Window("Flight Reservation").Dialog("Flights Table").WinButton("OK").Click Window("Flight Reservation").WinEdit("Name:").Set "Sailaja" Window("Flight Reservation").WinButton("Insert Order").Click Window("Flight Reservation").WinMenu ("Menu").Select "File;New Order" window("Flight Reservation").Close next I created a excel sheet with 3 rows and 2 columns. (username and password). The script is running 9 times. I made the option run one itaration only . eventhough it is running 9 times .can u plaese clarify my doubt. Thankyou Sailaja.
What is keyword view and Expert view in QTP?
How to compare 2 excel files using QTP? How to compare 2 PDF files using QTP?
can any one tell me How exactly data drivent testing is done in.explain with any example and the exact steps to fallow?
what are the mandatory and assistive properties of objects in QTP?What is attached text?Plz assist me with proper answer.
Why do you create a text checkpoint on a Web application? What is the purpose of the Close method?
What processes will be required to manage updates to the web site's content, and what are the requirements for maintaining, tracking, and controlling page content, graphics, links, etc.?
What are the types of object repository in qtp?
I want to know what are QTP functons and what are VB script functions. What is the difference between them.When we have to use these functions.
what is the frame work in J-meter?
How QTP recognize the object??how to add objcts into object repository??
Hi All, I need code for how to execute qtp scripts from excell sheet