Operates stand-alone, or integrated into Mercury Business Process Testing and Mercury Quality Center. Introduces next-generation “zero-configuration” Keyword Driven testing technology in QuickTest
Latest Answer : Object spy is used in QTP for Descriptive Programming. to Identify the Object properties ...
Answer posted by shreethik on 2005-06-09 08:36:38: Output values enable to view the values that the application talkes during run time.When paramaterised, the values change for each iteration.Thus by creating
Latest Answer : By using Text Output value we can capture a runtime value form the application under test and store it in a variable or in a localsheet ...
Latest Answer : Run-Time data table stores the run-time values(output values). It can be viewed in Test reults window. ...
Latest Answer : Testing the same set of functionality with different inputs is Data Driven test. This is done by using parameterization. ...
Latest Answer : Just a lil change to Sivakumar's script dataSource = ExcelFilePath & ExcelFileNameSet oCon = CreateObject("ADODB.Connection")oCon.Provider = "Microsoft.Jet.OLEDB.4.0"oCon.ConnectionString = "Data Source=" & dataSource ...
In order to fetch test data from Database we have to create a adobdb connection object to connect with data base. the syntax is .... >CreateObject("Adodb.connection").
Latest Answer : Hai Const adOpenStatic = 3Const adLockOptimistic = 3Const adUseClient = 3Set objCon=CreateObject("ADODB.Connection") Set objRec=CreateObject("ADODB.Recordset")objCon.Open "DRIVER={Oracle in OraHome92};SERVER={Servername};UID={Username};PWD={Password};DBQ={Dbnmae}"objRec.CursorLocation ...
These are the new features which are available in QTP8.2 and which are not present in 6.5 version.Keyword View: Lets you easily build and maintain tests without writingVBScripts.Auto-Documentation: Provides
Latest Answer : Really great help,Thanks ...
Latest Answer : try this simple code:enter some values in datatable....a=inputbox ("Enter the row : ")b=inputbox ("Enter Column:")msgbox "Row:" & a & "Column:" & bdatatable.SetCurrentRow(Cint(a))c=datatable.Value(CInt(b),2)msgbox ...
Latest Answer : Global action sheet belongs to current test script. Local action sheet comes into picture when using multiple action and if you want to run a copy of an existing action differently than other actions in the same script and those other actions are reusable ...
Latest Answer : DataTable.ImportSheet(FileName, SheetSource, SheetDest) FileName (String): The full path of the Excel table from which you want to import a sheet. SheetSource (Variant): The name or index of the sheet in the file that you want to import. Index values ...