Forum Discussion
bo_roop
11 years agoContributor
Yup, same thing here. But it's more of a Windows/Chrome issue. It happens on my home laptop without any automation software installed.
That said, just bury the terminate command in a loop and let it ride.
function KillEmAll()
{
while ( Sys["WaitBrowser"]()["Exists"] )
Sys["WaitBrowser"]()["Terminate"]();
}
This will kill all of the browser Windows/processes until there are no more.... and then it will continue on (and it's a cool homage to Metallica :) ).
That said, just bury the terminate command in a loop and let it ride.
function KillEmAll()
{
while ( Sys["WaitBrowser"]()["Exists"] )
Sys["WaitBrowser"]()["Terminate"]();
}
This will kill all of the browser Windows/processes until there are no more.... and then it will continue on (and it's a cool homage to Metallica :) ).