ajaybabu
15 years agoOccasional Contributor
open and close browser
what is the testcomplete code to launch either firefox or IE browser through script
and also what is the script to close open browsers(may be IE or firefox)
what is the testcomplete code to launch either firefox or IE browser through script
Hi All,
We can use below code/Script for launching the browser
Sub Browser
dim IE
set IE= CreateObject("InternetExplorer.Application")
IE.visible= True
IE.Navigatewww.google.com
Delay(15000)
End Sub