Can anybody give the script to addsheet, add column,add
values under that column in the rows??
Answers were Sorted based on User's Feedback
Answer / priyareddy
We can create sheet, parameter and can assign value in one
step:
DataTable.AddSheet
("MySheet").AddParameter "Parametername","Value"
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nothing
'add sheet
datatable.addsheet(" sheetname ")
'add columns. Parameters should be initialized with values
or with Empty String.
datatable.addparameter "Name", "Some Value / Empty String"
Pretty simple like this end of the day of this Universe.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / mercy
U can try with AddParameter method. If u have help chk for
this. The example for this will have "....Getsheet
(...)..AddParameter(..)..."
u try with AddSheet instead of GetSheet depending upon ur
need.... i'm guessing it would work...
just give it a try...
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nothing
If somebody have used what ever the concept may be, then
only tell the concept to the Learners. Should not provide
imaginations.
Is This Answer Correct ? | 0 Yes | 1 No |
· What should test in BANKING DOMAIN application ?
we have 10 automation scripts. how to call them from one main script.
what is virtual object?
How does qtp identify gui object?
What is the Difference between test object and run time object?
What is action required by QTP if a popup message is coming in exsisting script and now it is not coming. The script is having code to deal with popup message now when we run the script now the popup i snot coming according to new build, instead of changing the code what we can do?
What are the Levels of Automation in QTP
how to export the result to notepad....for example i want to enter the user name and pass word and clicking on login button ......once you click on login button the corresponding page will open ...in that page you having one list box ...here you can get either success or failure ........friends here i want export the message what ever i got either success or failure .....how to export the result to note pad
Hi, can explain the draw back of manual testing.plz send me the answer to my mail id deepthip1985@gmail.com
I have 5 no.of Action in my Test. Out off which i should make 3rd action as my start-up action. How should i make it?
I am facing an issue of object identification with the dropdown element of DHTML grid. When I tried to recognize these different dropdown objects, QTP identifies only one object for all the dropdowns. Hence, selection of different data from different dropdowns list is an issue. To overcome this problem, i have used Descriptive Programming technique by creating different object descriptions which have all the other properties same but differ only in one property i.e. ‘X’ location of the element on the screen. Hence, i have created distinct object descriptions that would allow us to select values in different dropdowns. The code is given below. But still I am unable to identify distinct dropdown objects. ‘Object Description for Dropdown Cell Status Set objCellStatus = Description.Create objCellStatus("micclass").value = "WebList" objCellStatus("name").value = "select" objCellStatus("x").value = 219 ------ ‘X’ Axis value for cell status drop down ‘Object Description for Dropdown Sub Segment Set objSubSegment = Description.Create objSubSegment("micclass").value = "WebList" objSubSegment("name").value = "select" objSubSegment("x").value = "319" ------ ‘X’ Axis value for sub segment drop down Please help... This is specific to DTML grid(Drop down object)
can we run the scripts of qtp 8.2 in the qtp7.0?