Answer Posted / bujji
".mst" Stands for Mercury Script Temaplate.
which will be used for setting up automatic "Boiler Plate "
in any newly opened blank Test in QTP.
Let me know in case of any questions else correct me if
something thought wrong.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how can i sent QTP results to the Html, notefile ,xl file give me the code using g mail login page
What is the purpose of loading qtp add-ins?
Does QTP run in any environment?
In an interview, what r the general questions asked in QTP? pls give me anwser to this question?
How would you directly trigger javascript in a test?
How to handle the exceptions using recovery secnario manager in quicktest professional (qtp)?
supose i hv to acsess some functionlaties of a test in 1 machin , some part other machin how can acsess?
What are the main differences of qtp and win runner?
tell me exact differenceb bw qtp and selenium?(could not tell open soure and licennce? difference in usage and technical difference?
Difference between copy to action and call to action?
If you are testing a web application then what will you test in that application?
Hi, I got error message as "object does not support this property or method: "Test.Actions" when i execute the following line of script on QTP 9.0 Dim qtApp, qtRep Set qtApp = CreateObject("QuickTest.Application") Set qtRep = qtApp.Test.Actions("Action1").ObjectRepositories Can anyone tell me where i am wrong.
How do I get the QTP scripts result in xml format by using vb script function?
What are the views available in quicktest professional?
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