Forum Discussion
11 Replies
- HirendraSinghContributor
I am facing issue in which I am unable to capture any element after we use OCR Action operation then after that TC not able to highlight any element which is highlighted earlier also. To overcome this, we again need to restart the TC and then try capturing the object again.
Can you check this at your end as well. - MW_DidataSuper Contributor
Our application doesn't start anymore with the new Testcomplete / Testexecute version.
I can't find the exact reason, but to me it seems the way Testcomplete hooks into the application might have changed.
This causes errors in our application that seem unrelated (C1 errors).
For now we'll stay on version 15.81- rraghvani
Champion Level 3
Ensure you log a Support Ticket!
- QAMIConsultNew Member
After trying my first AI recording and viewing it in the window it shows 'clipboard' instead of 'Click'
- donaldnecNew Member
Hi everyone,
We're new to TestComplete and TestExecute and wondering where I could download TestExecute? We currently have TestComplete 15.81.7.7 installed in our QA environment.
Thank you.
Apologies if this is the incorrect channel or thread.
- Hassan_Ballan
Champion Level 3
You would need to be licensed for TestExecute and you can follow these instructions Getting TestExecute Installation Package
- jkrolczySuper Contributor
What's New in TestComplete 15.82
https://support.smartbear.com/testcomplete/docs/general-info/whats-new.html
- jkrolczySuper Contributor
My issue still exists
Process not clearing up like it should with Chrome browser testing.- scottroutesmartContributor
I think I experience this issue also. When I use the Run Project button to set off a series of tests, it sometimes freezes and only shows the little top-right status bar, previous browser windows are closed, but a new browser window isn't spun up. If you click the Stop icon, it does nothing, so you are forced to kill TestComplete fully via the Process Manager. (Or maybe your workaround does something similar to kill the remnant Chrome Host tasks.) This started happening for me a couple of versions ago, and was hoping it was resolved in 15.82.62 but still seems to be present.
Does that sound like your issue?- jkrolczySuper Contributor
Yes - sounds like my issue
I am waiting on SmartBear to still fix, BUT in the mean time I put a piece of code in my fwk
as an Event to hit on OnStartTest to cleanup the tcCrHost processes.
It just a work-around for now, but gets me by on this issue.
function GeneralEvents_OnStartTest(Sender)
{// -----------------------------
var pName = "tcCrHost";
var p;Log.Message(" ");
Log.Message("Checking for "+ pName + " process(es) to terminate.");
// Wait for the process (up to 5 seconds) to avoid errors if it's already gone
p = Sys.WaitProcess(pName, 5000);// While the process exists, keep trying to terminate it
while (p.Exists)
{
Log.Message(pName + " found (PID: " + p.Id + "). Terminating...");
p.Terminate();
// Small delay to allow the OS to clean up the process
aqUtils.Delay(500);
// Re-check existence
p = Sys.WaitProcess(pName, 5000);
}
Log.Message(pName + " process has been terminated.");
Log.Message(" ");}