Forum Discussion

Rodrigo20's avatar
Rodrigo20
Contributor
10 years ago
Solved

Closing the current browser/virtual browser on TestComplete 10.60

Hi Guys,       I'm running some crossbrowser tests, but when I do that, a lot of browsers and virtual browsers stay opened, how can I close those browsers?   I just read this article, but it did...
  • blacy's avatar
    blacy
    10 years ago

    we wrote a script (called it CloserBrowser) with below code. works fine

     

    function closeBrowser()
    {

    while (Sys.WaitBrowser().Exists)
    Sys.WaitBrowser().Close();

    }