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
Is VBscript case-sensitive?
We have 1 web page with names column. I am giving the Service Providers1,2,3.... @ that time dynamically some no of names are displaying in the webpage and The Pop up windows are opening(No.of Pop Up windows=No.of Names). The names may be diffar for each and every Service Provders (Dynamically) How can we handle the Dynamic values?
write a vb script to generate hello 5 times using do until loop
Which conditional statement is the most convenient one to use in the case of multiple conditions in the vbscript language?
Create a file system object to do the following i. Create a folder ii. Create a text file in the folder iii. Update text file with some tex
Write a Fucntion to close all Opened browser expect desired one?
Write a VB Script to count blank Lines in a notepad
Which object provide information about a single runtime error in a vbscript?
What are the data types supported by vbscript?
How to remove the spaces in a string Ex: "this is apple"
about vb scripting programs this type of all question& answers
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