I downloaded QTP version 11 for the first time to see what is QTP.
I’m using Web, ActiveX add-on to test web application.
I looked thru help documentation and but not able to find my answer.
File > Settings > Properties tab,
there is “Generated Script” to generate vbs file for setting.
Inside looks like:
Dim App 'As Application
Set App = CreateObject("QuickTest.Application")
App.Launch
App.Visible = True
App.Test.Settings.Launchers("Web").Active = True
App.Test.Settings.Launchers("Web").Browser = "IE"
App.Test.Settings.Launchers("Web").Address = "http://www.w3schools.com/Html/tryit.asp?filename=tryhtml_link_target"
App.Test.Settings.Launchers("Web").CloseOnExit = True
...continue
So now I have this vbs file that I want to apply the setting for my test. How can I do it???
Have you looked at the documentation for the Generate Script button?