what is qtp automation frame work,what is the use of that
frame work?
Answer Posted / venkat
Frame work is the Approach or we can say the Architecture
that we follow for a project. The type of frame work you
choose depends on the project.
There are so many classification's on the type of frame
work some of them are:
1. Module driven.
2. Data driven.
3. Keyword driven.
4. Hybrid driven.(Data driven + Keyword driven)
| Is This Answer Correct ? | 30 Yes | 13 No |
Post New Answer View All Answers
Why script error occur in between recording in qtp?
What are the advantages of parameterization ?
What is method name to compare two XML files.
Does any one worked on JIL Emulator , Testing with QTP(automation). Trail Version of QTP is not identifying the child objects of JIL emulator, Can any one help me out ,
what r the verstions from 1st to present (verstions) of mercury tools (like winrunner,QTP,Loadrunner) ? Chandana
How to use the object spy in quicktest professional (qtp) 8.0 version?
What is quick test pro?
Is QTP Supports SWT applications? If yes, can you write a sample script for opening a new package in eclipse.
They asked by using qtp recording writing scripting
What is a checkpoint? How many check points are there in qtp?
What test cases can you automate using QTP?
How to connect the remote desktop using QTP 9.2 explain the method or procedure?
Hi All, How to Compare two strings character by character in QTP
How many types of recording modes are there?
How can we retrieve the Bug Ids which are open&Reopen in status through QTP scrit?Please find the script which i tried... Dim objBugFactory, objBug Dim BugId Set TDConnection = QCUtil.TDConnection Set objBug = TDConnection.BugFactory If QCUtil.IsConnected then Reporter.ReportEvent 0, "Connected", "Connected to server: " + QCUtil.TDConnection.ServerName + chr (13) +"Project: " + QCUtil.TDConnection.ProjectName + chr (13) + "Domain: " + QCUtil.TDConnection.DomainName Reporter.ReportEvent 0, "Current time on server is","==>" & TDConnection.ServerTime Else Reporter.ReportEvent 1, "Not connected", "Not connected to Quality Center" End If If mybug.Status="Open" Then BugId=mybug.DefectId MsgBox BugId End If 'OR**********************************--------------------- -----********************************** If Bug_Fields("BG_STATUS").Value ="Open" Or "Re Open"Then BugId=Bug_Fields("BG_BUG_ID").Value MsgBox BugId End If