Forum Discussion

jkrolczyk's avatar
jkrolczyk
New Contributor
21 days ago

TestComplete\TestExecute 15.82.62 - How's it working for folks ?

TestComplete\TestExecute 15.82.62 has been released with a lot of fixes that had been reported lately in this forum or through case tickets.

I am currently testing this release out for the issues I needed to be addressed.

How's it for other users?

 

11 Replies

  • 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_Didata's avatar
    MW_Didata
    Super 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

  • After trying my first AI recording and viewing it in the window it shows 'clipboard' instead of 'Click'

  • 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.

  • jkrolczy's avatar
    jkrolczy
    Super Contributor

    My issue still exists


    Process not clearing up like it should with Chrome browser testing.

    • scottroutesmart's avatar
      scottroutesmart
      Contributor

      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?

      • jkrolczy's avatar
        jkrolczy
        Super 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(" ");

        }