I am currently working on calling external executable file through python and perform some action on executable files.
I am able to open executable file through below command.
import os
path = 'C:\Users\Me\Documents\abc.exe'
os.startfile(path)
below is the screen shot of the application that opens.
Is it possible to perform below task through python script 1) Click on Browse Button. 2) Give appropriate file path for the firmware 3) Click on Flash Firmware
**Note : The Application is 3rd party application.