我想用Python打开一个已经打开的应用程序

时间:2019-11-24 12:24:13

标签: python automation

我正在用Python编写一个简单的程序,我需要更改应用程序可在其中多次运行的窗口。我可以使用pyautogui.click(x,y);单击任务栏,但那还不够有效。

无论如何,我可以使用以下命令来做到这一点:open('appname')或:summon('appname')

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

您使用没有Tkinter的GUI?很有意思。您需要使用python脚本打开程序吗? 尝试:

import os

# If program isnt in a folder with script

os.system("start LETTER:\Path\To\Program")

# If program in a folder with a script or program is a command in command line

os.system("start ProgramName")

有了它,您可以无限制地启动任何程序(如果您具有良好的CPU,GPU和RAM:D)