How to count Links in Webpage by using QTP?
Latest Answer: Code to Count Links in WebpageSet oDesc = Description.Create()oDesc("html tag").Value = "A" ' Get a collection of linksSet oLinkCollection = Browser(“name:=test”).Page(“title:=test”).ChildObjects(oDesc)ItemCnt ...
How to add objects information to object repository in QTP 9.2
Latest Answer: Add Objects information means adding objects in Object Repository.Open Object Repositay->Tools-->ORClick Add objects-->place the hand icon into the object--->click hereThe newly object is added in Object Repositary.Second way to add object in Object Repositary:Using ...
How to capture the run time value of the web table?
Latest Answer: var_CellValue = Browser("name:= ").Page("title:=").WebTable("name: = ").GetCellData(3,1)msgbox var_CellValueVarText = assign text you want to search forIf ( strcomp(trim(var_CellValue) , trim(varText),1)=0) Then'If ...
Does QTP support to the Wireless device applications like Pocket PC and MC 70. please do tell me.
Difference between GetVisibleText and GetRoProperty? Why should we use GetRoProperty instead of GetVisibleText?
Latest Answer: GetVisibleText :Statically the data is retrieved by using Get Visible text properyGetRoProperty:Dynamically(Runtime) the data is captured by using GetRoPropery ...
Hi I'm using qtp 9.2 while executing the script I'm getting the following error message "the statement contains one or more invalid function arguments"Please help it out
Latest Answer: This could be because the parameter was out of range, or contained invalid data. Alternately, you may have invoked a procedure at an unexpected time. Verify that the parameters being passed to the function are valid. Regards,MaluR ...
What is the advantage of using descriptive programming over object repository?
Latest Answer: Object Repository: QTP identifies the test object properties which it learns while recording and stores the object properties in the object repository.QTP will use these stored properties while executing the recorded script.Descriptive ...
How to change QTP default charecter encoding to ANSI?
Latest Answer: Try Like this........test menu-->click records and settings-->click web tab-->tick the check box on 'record and run test on any open web browser'....let me know if any problem arises in future ...
What is Library File? How to use library files in QTP?
Latest Answer: Library file in QTP is a separate file with ext. .qfl or .vbs. We can create these files to store commonly used functions and subroutines. These files can be accessed by any action by associating the library file to that action.Thanks,Harish ...
I have tried this way to export data from a database table to store in an excel sheet, but it is only storing the last record of the received records. Can anyone help me.Set objDB = CreateObject("ADODB.Connection")objDB.ConnectionString
Latest Answer: Set objDB = CreateObject("ADODB.Connection")objDB.ConnectionString = "DSN=mysql_qtp"objDB.OpenIf objDB.state=1 Thenmsgbox("Connection Is Establsihed")elsemsgbox("Connection is not opened")exittestEnd Ifsql_query ...
View page << Previous 1 2 3 4 [5] 6 7 8 9 10 Next >>

Go Top