ContributionsMost RecentMost LikesSolutionsRe: Integrate with DevOps Hi TanyaYatskovska, Great I will to show for my team this documentation. Thanks for your help Tanya! Re: Try Catch Finally don't work Thanks Tanya for your help. Re: Integrate with DevOps Hi Carson, This document told about version 14, but I'm using TestComplete and TestExecute in version 12. Can I integrate with this version? Thanks for your help friend. Re: Try Catch Finally don't work Hi Friends, I used some things for to solve this problem. 1- I my windows tests I get see two new columns, for help us in this case Stop on error and Stop on exception. Was needed to click with rigth button of mouse for to look this columns. 2- In finally block, was needed change for TestedApps.NameApp.Terminate(); 3- And any errors are need to treat in TestComplete. If one error to block application, will be necessary to treat this error. Thanks Tanya and Trista for your help! Integrate with DevOps Good Morning Guys, I'm using TestComplete version 12. This version its possible integrate with Visual Studio version 17? I neet to integrate my tests with our DevOps. SolvedTry Catch Finally don't work Hi guys, I need one help friends. In one test case occurs one error, I need to jump for the next test. I'm using try catch an finally, but this functions don't work. Look my script test: function emissaoGarantiaLicitantePublicaSucesso(){ try{ LoginGGTests.testAbreGG(); cadastroDeSolicitacaoGarantiaLicitantePublicaSucesso(); LogoutGGTests.erro; listaCadastroSolicitacoesComiteCreditoFavoravel(); listaCadastroPropostaSeguroGarantiaFiancaLocat(); autorizaAssinaturaTestSucesso(); LogoutGGTests.fecharGG(); LoginGGTests.testAbreGG(); telaConsultaDocumentoSucesso(); LogoutGGTests.fecharGG(); } catch(e){ Log.Error(e); } finally{ LogoutGGTests.fecharGG(); } } Look my properties: My version is 12.60 Solved