how to organize files in object repository of qtp
Answer / shrinivas
it can be organised by using object repository manager.
as there are two types of repositories 1.local object
repository 2.associate repository
associated repository can be created by user which consists
of objects that are used repeatad in the test carried out by
user.
local object repository consists of the objects exclusively
used in the test.
object repository manager provides merging option by which u
can merge associated object repositories.
by this way we can manage the object repository files....
Is This Answer Correct ? | 0 Yes | 2 No |
regular expression that will recognize a browser as long as its name property starts with mybrowser
Mention the environments where vbscript could be run?
What variable can you use to share info across the whole application for one user?
How to add actions in driver script to run those actions in QTP?
compare the string without using stringcomp function?
Why is error handling required?
How will you get the smallest subscript of an array in vbscript?
why do u choose to go for testing why cant for devoloping
We have an application which is built using multiple technologies and are using QTP as the tool for Automating the same. While we spy over a combo box in this application, we get the object name as a "Combo Control" and we are not able to perform any action over this object in either selecting or checking any method for the same like "Exist" etc. Hence we thought of a solution and the same can be found below
What is the purpose of folders object of scripting.filesystemobject class in vbscript?
Explain about constants in vb script?
i have developed the below QTP script to count the no of items available in the web list "Select a product" in www.bankrate.com and also want to print what are the items??? can any one help me to rectify the below script??? SystemUtil.Run "iexplore.exe","www.bankrate.com" a=Browser("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").page("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").Weblist("name:=select").GetTOProperty("items count") msgbox a Dim List() ReDim List(a-1) For i = 1 To a List(i-1)=Browser("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").page ("title:=Mortgage Rates Credit Cards Refinance Home CD Rates by Bankrate.com").Weblist("name:=select").GetItem(i) Print List(i-1) Next