I am trying to open a Windows app with a python script, execute a loop of calls on it, retrieve the values and save them to a text file.
I used the bellow python script to open the application, I am not sure what need to be done next, is there a list of calls-commands that I can get from the application so I'll know which one to call? how do I navigate the application interface from python?
import os
import subprocess
cmd = 'C:/Program Files (x86)/path/to/my/application.exe'
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
Thanks in advance!