ContributionsMost RecentMost LikesSolutionsRe: how to run custom scripts after project suite Run is completed I am also working on similar approach using PowerShell to generate html file and to send email, looking for options within Testcomplete to invoke the powershell instead of it as a new step to run the powershell command Re: how to run custom scripts after project suite Run is completed On the local machine we are using Run project option or by tag. In CICD, it is commandline and using tag Re: how to run custom scripts after project suite Run is completed yes we can keep it at the end of execution plan, that will be our last option. Reason is every project team has to make this change and we need to keep that testcase enabled. Also when running from CICD we are using tag to run selective testcase. Re: how to run custom scripts after project suite Run is completed Agreed but we have built the custom code using python within Test complete, so i am looking for some way to achieve it within Testcomplete Re: how to run custom scripts after project suite Run is completed we have built the custom code using python within Testcomplete, so i am looking for some way to achieve it within Testcomplete. I also looked into all the Events, i dont think any suitable event for my need. both Onstop Test & Onstop Testcase happens after each test/testcase. Since it is within Testcomplete, i cannot go for powershell or batch file how to run custom scripts after project suite Run is completed We have developed custom code in python to generate html based Summary report using the data available in the TestComplete provided Junit summary report xml file. At the end of execution i want to generate Junit summary report xml file and then I want to run this custom code. I am not sure when and where i can trigger this custom code after all the test execution is completed? Also it should get triggered in both commandline and using Test complete GUI. Any thoughts how to achieve this? Re: Automation Execution Report shankar_r- do we have this html report code available somewhere? Re: How to get the data in the summary report into variable i am basically looking for only the Summary report information such as Total tests executed, Passed, failed, error and execution timestamp available in the Junit summary report. If i could not find any internal variable within testcomplete that holds these data points then will write logic to extract the info from the junit xml file. Above link gives me idea on how to extract the required info. How to get the data in the summary report into variable I am working on creating a table with all the data available in the Junit summary report I want to check here to see if there is any Test complete inbuilt variables that has these values available. I am looking for execution data such as Run test cases, Passed test cases & Failed test cases. i am using below command to generate & export Test results summary in Junit format Log.SaveResultsAs("C:\\Work\\Log\\Log.xml", lsJUnit) sample Junit report -> <testsuites name="CommonAutomationFramework" tests="2" failures="2" errors="0" time="17" > <testsuite name="CommonAutomationFramework-UI" tests="2" failures="2" errors="0" hostname="xxxxxxxx" time="17" timestamp="2024-08-15T09:34:22.088-07:00"> SolvedRe: Session Creator commandline arguments goes lenghty i am ok with variable being lengthy, we have to check the flag(True/false) and accordingly i will either include more arguments or wont include those arguments. If it is in variable i can add those arguments or dont add and finally use that variable in command line after Run test. Other arguments are Jira integration, Jira project key, Jira_token, Confluence pageid and token and etc