Is there any vbscript in QTP for Data Driven Test instead of
using the option provided by QTP?
Answers were Sorted based on User's Feedback
Answer / jay prakash
what i understood from your question is: if there is a way
to do data driven testing from QTP in the expert mode using
script.
If my understanding is correct than yes there are ways to
do that. Script can be written for that.
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / babu
Hi Jay prakash,
Please provide me the vbscript to implement data driven
test.
Is This Answer Correct ? | 0 Yes | 0 No |
what is run-time object in qtp? explain with example?
Hi All, I need code for how to execute qtp scripts from excell sheet
I want to know can we integrate visual source safe tool with QTP and QC for our version controlling process? WE know QTP and QC 10.0 version is having the version control inbuilt in it but I want to know the merits and demerits of the inbuilt version control tool and the visual source safe tool using QTP and QC.
How to capture the tooltip of webelement,if there are two values displayed in tooltip of webelement?
How to export data present in Datatable to an ".xls" file?
I have a Webtable object in my shared object repository, say WT1, which has different index value in 2 different versions, one version having WT1's index value as 1 and other version having WT1's index value as 2. how could i use same test script to identify the WT1 object having different index values.
Maximum synchronizing time out in QTP
Explain in brief about the QTP Automation Object Model.
Explain Checking XML....
I have a list box which contains duplicate values e.g. A,A,A,B,B,B,C,C,C.Now write a code in qtp to test the list box . Scenario #1 : I have to check whether any values are there? Scenario #2 : If duplicate values are there,then how many time it is getting duplicated? Svenario #3 : how can I test presence of items in list box ommiting duplicate values?
hou can we use vb script in qtp could u tell me breafly
To count the no of links present in the yahoo home page i have written the script like this Set fileSysObject=createobject("Scripting.FileSystemObject") Set linksFileName=fileSysObject.opentextfile ("D:\samplelinkfile.txt",2,true) Set linkDescObj=description.Create linkDescObj("micclass").value="Link" Set noOfLinks=browser("yahoo").Page("Yahoo! India").ChildObjects(linkDescObj) For i=0 to noOfLinks.count-1 linkName=noOfLinks(i).getROProperty("name") linksFileName.writeline(linkName) Next linksFileName.close Set fileSysObject=nothing While running the script it showing error that object "yahoo"isnot found in the object repository. Is there any setting before running the script? if yes what is the steps for it.Im using QTP9.0