in QTP we test web based application at that time what
script is run? is support vb script? plz tell me
Answer Posted / diwan
Plz tell me how we will check the load testing on it.
If we have got any script so how we will run it 100 times.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Dear All , For UFT 12.02 which version QC or ALM will support ? Thanks Balaji
what is the difference between modular framework & datadriven framework
I am getting an error "failed to open the XML checkpoint result viewer" in result window,after clicking on "View XML checkpoint results".Someone suggest me settings,if any...
How can you send user defined messages to test report?
For example you are checking bit map check point before coming to the results. How can you say it is passed? Or failed? Anyways?
when will you do debug your script? and explain that process?
How to Test the mainframe application?
Hi All, I Want To excute scripts batch without using QC .I need code for that Thanks Balaji
how will you check how many members visited the website www.infosys.com?
How many types of object repository in qtp?
What test cases can you automate using QTP?
Describe synchronization point.
How you calling actions in qtp?
How many types of recording modes in qtp? Describe each type with an example where we use them?
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