我在语音编码平台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准备好进行键盘输入?