Hi all, I have some tests failing with TE that are not failing when I run TC.
Scenario: I have an application that is only part of the main overall build. When I launch it standalone, it throws a crash in the background that’s expected because it’s looking for another part of the build that is not there. User doesn’t see the crash.
Now when I set up my environment in TC, I said continue running on error, and set up that step to not log the error. The whole suite of tests pass. When I move it to TE to run, it fails immediately when it sees the background crash and I cannot run my test. Is there something I am missing and can I get test execute to ignore the crash?
Solved! Go to Solution.
Hi @stampy986,
It makes sense to consult with the TestComplete Support Team. Could you please contact them here? https://support.smartbear.com/message/?prod=testcomplete
Technically speaking, those settings are stored in the project. I believe in the MDS file. If that file has not been copied to the new machine properly, that would cause this difference in behavior.
Unfortunately it the same machine, I am just kicking off test execute to run it.
Double check something. In your test items, right click and select "Field Chooser". Then drag in the field for "On exception" and see what the setting for that is.
I didnt notice that property before now and it was set to stop on error. I have changed it to continue, but it did not help. My application still closes when test execute tries to launch it. It still launches correct through test complete
What are you getting in the log from the TestExecute runs? Is there anything present in the log output? Generally speaking, there should be no difference running on TE versus TC so I'm wondering if you're running into some other problem and not this one.
I agree, I think TC and TE should be the same, but I cant see what else it could be.
I created a new blank project to simplify everything.
First test is TC:
I set all the project properties to continue running:
TestedApp I launch with script:
function RunWellExplorer()
{
//Log.Enabled=false
Delay(3000)
TestedApps.WellExplorer.Run()
Delay(30000)
//Log.Enabled=true
}
Run TC:
After about 20 seconds my app launches alongside TC as seen in image below. It shows the error which is expected since I have logging turned on.
Close TC and open TE: My app briefly try to open after 20 seconds it closes. Same Error as TC by no app running.
In the event logger of windows, the errors are the same except for the case, but that shouldn't matter.
Error: Same for both TC and TE
I started with a clean new project and only put 1 test in to simplify things:
TC test first:
I ran a tested app with the script below:
function RunWellExplorer()
{
Log.Enabled=false
Delay(3000)
TestedApps.WellExplorer.Run()
Delay(30000)
Log.Enabled=true
}
After about 20 seconds my app was open on the left with the error I expected in the log:
Closed TC and launched TE, ran the same script. My app tried to start and closed after about 20 seconds. Everything appears the same as TC
In the windows event logger, same error only the case is different.
Hi @stampy986,
It makes sense to consult with the TestComplete Support Team. Could you please contact them here? https://support.smartbear.com/message/?prod=testcomplete
Subject | Author | Latest Post |
---|---|---|