ContributionsMost RecentMost LikesSolutionsRe: Test Execution Summary is null I just downgraded back to TC 15.61.48.7 and the execution summary is displayed properly again for all executions. Definitely waiting for a fix here instead of creating a new project which is pretty inconvenient. Re: Test Execution Summary is null I just updated TC to 15.68.8.7 and I got the same issue now. The Test Execution Summary is empty after the update - even for pre-update test execution that previously displayed the results properly. This definitely looks like a TC bug. Re: Xpath Elements Your NameMapping might be looking like this using xpath: Re: TestComplete issues with Chrome 113 Good morning, the browser interaction works again for us! (Although I had no update available for Chrome nor TC..) Chrome 113.0.5672.93 (Official Build) (64-bit) TestComplete 15.51.4.7 x64 Re: TestComplete issues with Chrome 113 Any news on the chrome patch? We really rely on it and do not plan to downgrade chrome.. kr Re: TestComplete not support Chrome Browser If this is about Web testing (since this is posted in Mobile Applications), I had to overcome a quite similar issue with this warning. Solution: * Re-install TestComplete (the installation should reset the browser plug-in) * Ensure the Chrome plug-in is automatically installed and enabled after the re-installation (works for Edge, etc. as well) Generally, if you have issues with the browser plug-ins (group policies, unable to change config of the plug-in, etc.), just re-install TC. Re: Python disappeared after upgrade Custom Python modules that you manually moved into your TestComplete installation are deleted with every upgrade. Solution: Reference the specific Python modules in your TestComplete Python scripts by adding the following at the very top: import sys sys.path.append('{path}\{folder with modules}') import re import my_module ...