Forum Discussion

Sundaytwins's avatar
Sundaytwins
Occasional Contributor
8 years ago
Solved

Opening second browser window

Hi All, 

 

I'm currently working on a problem that bothers me a bit..

 

I run cross browser tests for a web application.

 

Now, while having opened one of the browsers with the application under test (IE, Chrome and FF) i need also to open a second browser screen (that needs to stay open during the testing of the cross browser testing). The additional browser is IE (as the application from which i need to compare with only runs in IE (silverlight)).  How can I open the additional IE browser with the second appilication while doing cross browser testing on the three other browsers.

 

Any help would be appreciated! The only thing i discovered on the forum is about new tabs, not new windows.

As i need to reuse the additional IE (to look for info) I need to keep that window opened until tests are finished.

 

Best regards, 

Dominic

  • I suspect you might.

     

    As I say, I use a specific start page (stored on the local machine and ref'd as a start parameter when I launch the browser) so I can tell them apart. Beyond that, you'd have to resort to index numbers or something horrible and unreliable along those lines.

     

    Had to do it this way for exactly the reasons you're having problems. :smileyhappy:

10 Replies

  • Assuming the second instance of IE is open at a different URL, use the URL to tell them apart.

     

    I do this all the time. Have up to 5 instances of the same browser open. All with different URL. Works fine.

     

    (One thing I do that makes this a little easier is open any new instance of the browser with a small stored HTML page. Just a simple little page that says something like "This is your new browser". Then I can easily tell which one is the newly opened one as it will be open at this page. Grab the new one and navigate off to wherever it needs to be. Then when you open another one, it starts on the stored page. Identify. Navigate away .... etc etc.)

     

    If you have multiple browsers, all open at the same URL, then telling them apart can be a problem.

    • Sundaytwins's avatar
      Sundaytwins
      Occasional Contributor

      Hi Colin, 


      Thanks for helping me out.

      I can't seem to get two browsers open.

       

      This is the sequence of things i wanted to follow:

      I open IE (with the silverlight application)

      then I want to run the tests on all browsers (IE, Chrome, FF) with the application under test.

      each browser is started and closed after the test.

      Last thing would be to close the IE with the silverlight application)


      Problem is that when firing up the IE with the AUT, He recognises IE as being open already, and uses that window instead.

       

       

       

       

      • Colin_McCrae's avatar
        Colin_McCrae
        Community Hero

        I'm not clear?

         

        Are the AUT and the Silverlight page on different URL's?

         

        If they are, you should be OK.

         

        How are you starting IE? I start it using a Windows Shell object to start the EXE with command switches. This forces IE (or whatever other browser you're using) to start on a specific page. I then find that page (and other browsers already open will NOT be on that page - it's my own little HTML start page remember) and all is well from there. Once it finds the right page, you know it's using the right browser.