Waht is diff between SystemUtil.Run and invokeapplication
Answers were Sorted based on User's Feedback
Answer / firoz basha shaik
Invoke is used to exeecute an .exe file but by using
systemutil.run we can open both .exe file as well as
browser fles.
invokeapplication "c:\IE\Iexplore.exe"
SystemUtil.Run "c:\IE\Iexplore.exe", "www.yahoo.com"
I think i am right. Please correct If I am wrong.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / ravi_kanakam
The invokeapplicaton method can invoke only an executable
application(file with EXE extenstion)
The systemutil.run method can invoke any application.
For example
systemutil.run "c:\testdata.txt"
invokeapplication "c:\diskcleaner.exe"
| Is This Answer Correct ? | 6 Yes | 2 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 logon to:
http://ssofttesting.blogspot.com
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ram
by using invoke application we can open only exe file
ex->invokeapplication"notepad.exe"
by using SystemUtil.Run we can open any widows and web
application and .exe file
ex->systemutil.run"www.yahoomail.com"
| Is This Answer Correct ? | 0 Yes | 0 No |
Can you tell me the differences between writing the VB script manually for a application and recording the same application in QTP , with a example?
in QTP,how to write a descriptive program for "yahoo" or "gmail" Login page
What is system testing and what are the different types of tests you perform in system testing?
How do you create new test sets in td?
What is smart identification?
how can i pass parameters into function?
i need to add 1000 users in a domain i written the script for that and it is running successfuly but the problem is that my system is not the user of that domain in which i have to add users so for adding users in that domain i have to install qtp on that another system, can anybody suggest me the way to add those users from my system ultimately i want to know how to access remote computer through script
How you can delete excel file in qtp?
Suppose I have three hyperlinks with same properties. How to solve this and what are the ways to solve this. we can solve this by using index property but what are the other ways we have have to solve this problem. Login (href: btnlogin.aspx) Login (href: Sourcelogin.aspx) Login (href: homelogin.aspx)
Is it possible to return multiple values from a function..? Then how..?
I am a newbie to QTP / Automation testing. I want to develop a script that creates a data file automatically with proper headings using VBScript in QTP.
pls tell me how will you write the vb script in QTP for DataDriven test from Excel sheet for multiple userid and password explain with example