Kate
9 years agoContributor
Empty Log and all tests pass (when should fail)
Hi all,
I'm creating my first project with TestComplete. Need help.
I created simple script in Python to run my tested app.
When I run the routine, it does not do anything with my app, but says the test passed. The log is created, but stays empty.
'Open app from scripts' is checked.
Here is my script:
def open_myapp():
Log.Message('Hello') #just to have smth in my log... but nothing gets there
TestedApps.myapp.Run()
time.sleep(3)
if not Sys.WaitProcess('myapp').Exists:
Log.Error('MYAPP did not start!')
Any help will be kindly appreciated.