Rajesh2
8 years agoContributor
How to launch the Application without using Tested Apps
Hi All, How to launch the desktop application without storing it into TestedApps in TestComplete with Python? I need to launch an application and perform actions without storing it in Tested...
- 8 years ago
Hi,
You can run it using shell call:
import subprocess def launcher(path): subprocess.call( [path] )
path - should be a string contains the full path to your application executable file
If you need some command line arguments, you can add them in the list after path: [path, arg1, arg2]