How to launch the Application without using Tested Apps
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2017
03:59 AM
03-21-2017
03:59 AM
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 TestedApps.
Can anyone please suggest the solution for the same..
Solved! Go to Solution.
3 REPLIES 3
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2017
06:29 AM
03-21-2017
06:29 AM
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]
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2017
07:59 AM
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-21-2017
08:08 AM
