ContributionsMost RecentMost LikesSolutionsRe: Killing IE after a test has run How would i go about implementing that command? Bearing in mind i'm keyword testing, not writing the tests myself. Killing IE after a test has run I've created a series of automated tests using the click and record function of test complete. I've strung my tests together, and after each has run I've created another test 'IEKill', This is another click and record test which basically opens up command prompt and runs the following: taskkill /F /IM iexplore.exe /T This is supposed to kill and close down all IE processes, but its not working. It'll run, but once the command has been issued, IE remains active. Note: I'm running my tests in a W10 environment, using IE11. I need a way of killing IE once my automated test has run. I'd assume that test complete focuses into the browser somehow which means when issuing a kill command it cant be killed off . Any help is appreciated. Re: Cannot run keyword tests in sequence 'New instances will not be launched?' So i've actually got around this problem by creating a separate keyword test which opens command prompt and issues this command: taskkill /F /IM iexplore.exe /T I run that after each of my tests and the next one loads correctly. Cheers for your help. Cannot run keyword tests in sequence 'New instances will not be launched?' I've got a bunch of keyword tests which; load IE, carry out a test, then close down IE.. When i run these individually they work fine, but when adding them to a folder inside test items the first one runs correctly, then the second fails and gives this error: There is (are) 1 running instance(s) of "C:\Program Files\Internet Explorer\iexplore.exe". New instances will not be launched. 14:01:18 Highest For some reason IE doesn't seem to be shutting down correctly, is there a way to force shut IE after my test has finished? I've used the 'BrowserWindow Close' command - but don't look like its working! :( Re: cannot obtain the window with window class 'IEFrame',window caption'*' and index 0. Did you ever find a solution for this? I've got the exact same issue. Internet explorer failing to re-open when running tests in sequence (as test items) I've created a series of self contained web tests.. e.g 'Load Browser, Run Tests, Close Browser'. I'm using IE11 to run all my tests. When i run these individually, they work fine. But when running them in sequence using test items, it will fail after the first test. The error message(s) i get are: 'The browser is already running' 'Cannot obtain the window with the windows class 'IEFrame', window caption '*' and index 0. See additional info for details' 'The object does not exist. See additional information for details. 'The test execution war interrupted' Any idea why it would fail to reopen IE? Really frustrating me! If i run them individually it closes down/reopens without a problem. Error getting response; org.apache.http.NoHttpResponseException: The target server failed to respond Soap Version: 5.0.0 (Free version) Each time i submit a request to a specified endpoint which is outside of my corporate network im receiving: 'Error getting response; org.apache.http.NoHttpResponseException: The target server failed to respond' I can run the exact same request using another computer, same network and it works correctly. It's like something is blocking the requests from being made when going outside the network. An internal endpoint works everytime. Any ideas?