How to launch application under test through VBscript without
using systemutil.run or invokeapplication?
Answers were Sorted based on User's Feedback
Answer / mogal
1.set IE=createobject("internetexplorer.applicaation")
IE.visible=True
IE.navigate "www.google.com"
2.set owsh=createobject("wscript.shell")
owsh.run "www.google.com"
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sai
By Using Automation model reference.
Set a=CreateObject(Excel.Application)......
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / nayana
set ie=CreateObject("internetexplorer.application")
ie.fullscreen=true
ie.navigate "http://gmail.com"
set ie=nothing
| Is This Answer Correct ? | 1 Yes | 3 No |
how can i replace any text from the qtp script with some anothere text
The string is like POWER STAR PAVAN , write a script for this how to findout the number of "A" in the string ?
How i can use Regular expression in QTP?give detailed steps for it.
1. What is extense of Result file in QTP?
Can we directly automate testscripts accrdoing to requirements? WHY ?
In key word driven framework,we will rename the logical names of objects,why?
How to create a Runtime property for an object in QTP?
Can you write User defined function for WebEdit ? Note1: This function can be used for all web edits in all pages Note2: Don't use Child objects method
Could any one tell me "How can i recognize my cursor position using QTP 9.2" Give me a scripts for this
Does QTP is "Unicode" compatible?
What are the file extensions for per-action, shared object repository files and what is the extension for library files?
Can we write class for vb script in Quick Test Professional?