我在python 3上运行一个脚本,它使用webbrowser.open()打开一个URL,并立即需要用户输入。问题是活动窗口现在是浏览器而不是python shell,并且总是需要Alt-Tab或click才能提供答案。你可以想象成千上万的图像是多么令人沮丧。代码就像这样简单:
for rP in images:
webbrowser.open(rP)
decision = str(input('Is image '+str(rP)+' ok?')
我想有三种方法可以解决这个问题,但我似乎找不到任何一种方法。我在webbrowser.open()命令中尝试了'autoraise'选项无济于事。我猜这两种解决方案都会如此简单,以至于我事后会碰到脑袋。
所以:
解决方案#1:在输入行之前有一个命令,使shell窗口处于活动状态,而不是浏览器
解决方案#2:在后台打开网页,从而不会离开外壳
解决方案#3:给shell窗口一个“always on top”属性。
有什么想法吗?
答案 0 :(得分:1)
这是使用Python 2.7.8测试的,double AppActivate trick posted by partybuddha和sleep trick posted by eryksun:
from webbrowser import open as browse
from win32com.client import Dispatch
from win32gui import GetForegroundWindow
from win32process import GetWindowThreadProcessId
from time import sleep
images=['http://serverfault.com', 'http://stackoverflow.com']
for rP in images:
_, pid = GetWindowThreadProcessId(GetForegroundWindow())
browse(rP)
sleep(1)
shell = Dispatch("WScript.Shell")
shell.AppActivate(pid)
shell.AppActivate(pid)
decision = raw_input('Is image ' + str(rP) + ' ok? ')
如果没有1秒睡眠,浏览器就会保持关注,就像AppActivate发生得太快一样。
#!/usr/bin/env python
from webbrowser import open as browse
from subprocess import check_output
images=['http://serverfault.com', 'http://stackoverflow.com']
for rP in images:
term = check_output(['/usr/bin/osascript', '-e',
'copy path to frontmost application as text to stdout']).strip()
browse(rP)
check_output(['/usr/bin/osascript', '-e',
'tell application "%s" to activate' % term])
decision = raw_input('Is image ' + str(rP) + ' ok? ')
这段代码是用Python 2.7.5测试的,所以可能需要调整才能使用Python 3,但是 核心思想是使用osascript获取最前面的应用程序,然后在浏览器窗口中打开URL后激活它。
答案 1 :(得分:0)
如果您使用Selenium,则焦点会在.get()
之后自动返回浏览器。