如何让Popen等待git-bash.exe准备好进行键盘输入?

时间:2019-06-06 23:16:15

标签: python windows bash git

我在语音编码平台Caster上工作,我正在尝试在Windows上使用git-bash.exe自动签出提取请求here

文件here的相关部分是:

terminal = Popen(TERMINAL_PATH, cwd=local_directory)
# I'd like to replace this with a wait command
time.sleep(2)
Text(fetch_command).execute()

其中TERMINAL_PATH = <git-bash-dir>Text(fetch_command).execute()模拟击键,以在git bash窗口就绪后放入提取提取请求分支的命令。

当前,它只等待2秒钟,希望新窗口可以输入。如何让python等待git-bash准备好进行键盘输入?

0 个答案:

没有答案