检查用Selenium打开的浏览器是否还是运行(Python)
Check if the browser opened with Selenium is still running (Python)
我想检查用 Selenium 打开的浏览器是否仍然打开。我需要这个检查来关闭一个程序。如果浏览器未打开,则 GUI 应该在没有消息 (tk.messagebox) 的情况下被销毁。但是如果浏览器是打开的,那么消息应该会在功能被激活后立即出现。
函数如下:
def close():
msg_box = tk.messagebox.askquestion('Exit Application', 'Are you sure you want to exit the application?',
icon='warning')
if msg_box == 'yes':
root.destroy()
try:
web.close()
except NameError:
sys.exit(1)
except InvalidSessionIdException:
sys.exit(1)
except WebDriverException:
sys.exit(1)
else:
return
我认为没有直接的 api 检查浏览器状态。但是您可以使用变通方法
def isBrowserAlive(driver):
try:
driver.current_url
# or driver.title
return True
except:
return False
我想检查用 Selenium 打开的浏览器是否仍然打开。我需要这个检查来关闭一个程序。如果浏览器未打开,则 GUI 应该在没有消息 (tk.messagebox) 的情况下被销毁。但是如果浏览器是打开的,那么消息应该会在功能被激活后立即出现。
函数如下:
def close():
msg_box = tk.messagebox.askquestion('Exit Application', 'Are you sure you want to exit the application?',
icon='warning')
if msg_box == 'yes':
root.destroy()
try:
web.close()
except NameError:
sys.exit(1)
except InvalidSessionIdException:
sys.exit(1)
except WebDriverException:
sys.exit(1)
else:
return
我认为没有直接的 api 检查浏览器状态。但是您可以使用变通方法
def isBrowserAlive(driver):
try:
driver.current_url
# or driver.title
return True
except:
return False