How can we get the result from WindowsXP Command Window?
(e.g. After we input 'ipconfig' in command window, how QTP
get the result?)
Answers were Sorted based on User's Feedback
Answer / surya
Dim app
set app = createobject ("Wscript.shell")
SystemUtil.Run "cmd.exe"
app.sendkeys "cd\"
app.sendkeys "~"
this code will run
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sagar kuamr sutar
We can get the results from windows xp cmd prompt:
Dim app
set app = createobject ("QuickTest.Application")
SystemUtil.Run "cmd.exe"
app.sendkeys "cd\"
app.sendkeys "~"
After this you can give your input to get the results.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / rajendra
Command window meand command prompt,
it is a DOS o.s environment.
QTP cannot support this dos environment.
ok frindz byee
Rajendra
rajendra_penumalli@yahoo.com
+91-9885162742
| Is This Answer Correct ? | 0 Yes | 2 No |
What exactly a frame Work means?what are the different type of frameworks done in QTP?why the caption for QTP given as advanced keyword driven?
Explain the difference between data driven testing and parameterization ?
what are the different Frame Works in Quick Test Proffessional testing
how quick test record on dynamically generated urls and web pages.
LINUX environment supports QTP or not? LINUX environment supports QC or not?
Excel sheet having some datas and some datas present in the application (in table). How will you compare these two datas? Write code to fetch datas from Excel sheet.
Whenever we r keeping mouse pointer under the image we r getting image name. In qtp how can we do this thing.weather that name is coming or not?
Call to copy of an action and call to existing action… i know the diff but in real project how to use..? i want live scenario.pls help me..
Can we directly automate test script according to requirements?
how many test scripts we will write in qtp? very urgent. please??? Thanks in advance..
we have one text box and one list box(list box appear in same page or another page) what ever the text enter in text box that must be displyed in list box as first one. for example if we enter 10 in text box that is the 1st item in list box . after that we enter 11 then 11 is the 1st item and 10 is 2nd item. the maximum limit of list box is 10 items. if we enter 11th item the 10th item is deleted and llth one is add as 1st one and 9th one goes to 10th position
What is the difference between per-action and shared?