Forum Discussion

vthomeschoolmom's avatar
vthomeschoolmom
Super Contributor
5 years ago

opening a browser in script extension

Browsers.Item(btIExplorer).Run("http://smartbear.com/"); 

 

The above would be what I use in my project. How would one do the equivalent in a script extension? Thanks

11 Replies

  • tristaanogre's avatar
    tristaanogre
    Esteemed Contributor

    The Browsers object is not accessible within an extension so you can't do exactly the same thing.

    What you will have to do is write code to use the WshShell object and the Run method to run the desired browser executable.