I want to open a Notepad window without recording a
test and I do not want to use SystemUtil.Run command as
well How do I do this?
Answer Posted / ravi
Dim s
Set s= create object("wscript.shell")
s.run"notepad"
set s= nothing
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Why to use descriptive programming?
Why is Client side image is preferred over server side image?
Which environments are supported by hp qtp?
How to create a standard checkpoint ?
What is quicktest professional?
Explain building blocks of the bpt framework ?
What is difference between Recording time object identification and Run time (Execution) time.
In QTP can we feed the out of one browser(internet explorer) as an input to the another browser(mozilla firefox)? If yes explain how to do it with an example.
Hi,All How to create a link in excel sheet using qtp
Explain quicktest professional testing process?
What is the basic concept of qtp?
In what occasion we can specify global sheet and action sheet?
What is Curd testing?
Is it possible to change the property value at runtime? How it is possible?
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