Southpaw
7 years agoContributor
Help launching IE usnig VB in script editor
Hello - Im trying to launch IE using the below snippet. It doesnt launch IE. It doenst fail either. Ive tried it without the params around the url too. Nothing. Am I missing something?
Sub Laun...
- 7 years ago
Why are you trying to launch it using CreateObject?
TestComplete has a "Browsers" object that allows you to launch any browser insalled on your machine.In VBScript, you would do this:
Browsers.Item("iexplore").Run
You would then access the IE browser by something like "Sys.Browser('iexplore')" or (recommended) with the mapped Alias of "Aliases.<browser node name>" and call the navigate methods from there.