what is the difference between invoke application and
system.util.run
Answers were Sorted based on User's Feedback
You can run any application from a specified location using a SystemUtil.Run statement.
"SystemUtil.Run" is especially useful if your test includes more than one application.
You can specify an application and pass any supported parameters, or you can specify a file name and the associated application starts with the specified file open.
for e.g. SystemUtil.run "iexplore.exe", "www.gmail.com"
"InvokeApplication" invokes an executable application.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / ramesh ravala
Hi All,
Invoke application was using in WinRunner.
system.util.run using in QTP
Invoke application invoke only .exp files,
systemutil.run invoke any type of files.
We can use both serves the same
purpose in QTP.
Regards,
Ramesh Tharapathi Ravala
| Is This Answer Correct ? | 1 Yes | 0 No |
Both are used in QTP.
In most situations, you should use a SystemUtil.Run
statement to run applications or to open files in their
default application. A SystemUtil.Run statement is
automatically added to your test when you run an
application from the Start menu or the Run dialog box while
recording a test.
Sy:SystemUtil.Run "C:\type.txt", "", "", ""
InvokeApplication statement is supported primarily for
backward compatibility.
Sy: InvokeApplication "E:\Program Files\Plus!
\Microsoft Internet\IEXPLORE.EXE"
| Is This Answer Correct ? | 5 Yes | 5 No |
Answer / sunil kumar.m
Invoke application is used to invoke any .exe file, where as
SystemUtil.Run works with any system utilities like
“Iexplore” apart from .exe file
For more details on the qtp refer to this blog:
http://ssofttesting.blogspot.com
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / ramarao
Invoke application invoke only .exp files,
systemutil.run invoke any type of files.
invoke application can be used in in winrunner,system
util.run can be used in QTP.both of the phenominon is same.
U have any qurriers contact with me through mail.
mail id:physics143@gmail.com
| Is This Answer Correct ? | 3 Yes | 4 No |
Answer / lochana
Hi,
Invoke and Systemutil.run are used to open an application.
But the difference is that invoke function and
systemutil.run is object.method. Generally QTP contains
object.method with in the VB script.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / kishore
Both can be used by QTP. Invokeapplication is used to
open .exe files where as Systemutil.run is used to run any
application.
For ex:
1. For this path "C:\Program Files\Mercury
Interactive\QuickTest
Professional\samples\flight\app\flight4a.exe" both will work
2. For the path "C:\Documents and
Settings\Kishore\Desktop\Flight.lnk" Only Systemutil.run
will work, but not invoke application
| Is This Answer Correct ? | 1 Yes | 2 No |
Invokeapplication(" ") is use for Windows Application and
systemutil.run is used for Web Based Application.
| Is This Answer Correct ? | 2 Yes | 3 No |
Answer / srinath
We can use both Invoke Application & systemutil.run in QTP
QTP can be said as it has more advanced feature than what
winrunner supports
| Is This Answer Correct ? | 4 Yes | 10 No |
invokeapplication and system.util.run both serves the same
purpose in QTP, but invokeapplication used while you are
writing the script where as system.util.run is used when
you record the application under test.
invoke_application is used in WinRunner to launch the
application.
| Is This Answer Correct ? | 1 Yes | 8 No |
Explain measuring transaction.
Can anyone please tell me how to select next 5th business date from calendar using QTP/UFT ?
1 Answers Cigniti Technologies,
How qtp recognizes the object?
Thanks Rag... One more question, How we test the dynamic images which frequently changed?Using the bitmap checkpoint r any other options available.... Can u give the steps pls... Thanks
How to start recording using quicktest professional?
What r steps to migrate from Manual testing to QTP?(IN BOTH WEB BASED AND WINDOWS APP)
How to Analyze the Checpoint results by Text/Text Area Checkpoint?
IS standard check point is very important than the other check points in QTP? If so why?
if anyone has idea of the interview procedure in covansys, plz send me a mail?
I am using DataTable.ImportSheet method to import the data from an excel sheet to the Runtime DataTable of QTP. here is my piece of code DataTable.import("c:\DataSheet.xls","Members","Members") The first row headings of Members sheet of DataSheet.xls and Members sheet of QTp are matched. but the QTP is taking very long time(approximately half an hour) to import the data into runtime datatable even though the DataSheet.xls has one or two rows in it. Please let me know why this is happening and is there any alternative for impoting the data into runtime datatable of qtp ?
I have developed and executed a script successfully, and saved the same to QC. When I tried to execute the script from QC, the script is not executing. What are the possible reasons?”
How you can find length of array in qtp?