fayizkc
6 years agoOccasional Contributor
How can I open new browser session by test complete
I need to work on multiple urls in my project with different browser instances. When I use Browsers.Item(btIExplorer).Run(url1), It is entering url with existing browser.
When I try WshShell.Run("iexplore.exe " +url2), IE is getting hang every now and then. It is not working always
When I try Sys.Browser('iexplore').BrowserWindow(0).Keys("^t"), it is opening new tab, but still url is entering in the previous tab.
Question 1: Is there any direct method in Testcomplete to launch new browser instance (in IE & Chrome)
Question 2: If no, how can I identify the last opened browser and enter my application URL to that browser.