使用子进程在脚本Python中传递数据以执行

时间:2018-10-18 09:21:09

标签: python windows automation executable

我正在努力应对Python中的挑战。我有一个想法,我的脚本必须唤起一个可执行文件。我可以为该可执行文件传递用户名,但是密码是什么,我需要在命令行中手动输入。我想使应用程序自动化,所以我不会每次都手动输入它。这是脚本。我在Windows下运行它。

`
import subprocess 

p = subprocess.Popen(".\executable.exe --user domain\user", stdin=subprocess.PIPE, shell=True)

p.communicate(input="Mypassword")`

0 个答案:

没有答案