TestComplete does not appear to close IE11 correctly resulting in script/TestComplete hangs
I have a support ticket into SmartBear for this but I am wondering if anyone else is having this problem.When I close the IE11 browser using Test Complete script the IE process moves under the SmartBear TestComplete app in Task manager and then TC cannot open or close the process anymore.
The following function reproduces the problem on my PC everytime. See the comments in the script for more details on the behavior.
function TestSample()
{
//To reproduce the problem open Task Manager and make sure that there is no IE process runn.
//Then run this script.
Browsers.Item(btIExplorer).Run(); //IE 11 browser opens. Checking Task Manager shows Internet Explorer under Apps
aqUtils.Delay(5000, "Delayed for browser to appear.");
var process = Sys.WaitProcess("iexplore",2000);
process.Close(); //IE closes. Check Task Manager and the process is not there
aqUtils.Delay(1000,"Delay for browser to be closed");
Browsers.Item(btIExplorer).Run(); //IE 11 browser opens. Checking Task Manager shows Internet Explorer under Apps
aqUtils.Delay(5000, "Delayed for browser to appear.");
Browsers.CurrentBrowser.Navigate("https://yahoo.com"); //doing a page navigation seems to be the key that triggers the problem
var process = Sys.WaitProcess("iexplore",2000);
process.Close(); //IE disappears from the desktop but the IE process is not moved under the SmartBear TestComplte app in task manager."
//" TC Dialog shows "Waiting for the 'iexplore process to close"
Browsers.Item(btIExplorer).Run();//TC log says IE is already running but there is no browser showing }