我正在尝试使用Pycharm在Selenium Webdriver的python中运行脚本。为了打开我的浏览器,浏览器确实打开了,但是在后台运行并且在某段时间后退出。
Class Automation:
def Chrome():
driver = webdriver.Chrome('/usr/local/bin/chromedriver')
driver.get('https://www.google.com')
auto = Automation
auto.Chrome()
如果我在这里做错了,请告诉我。
答案 0 :(得分:0)
如果Web Browser
打开但仍在后台,请使用以下代码块将其置于焦点位置:
driver.get('https://www.google.com')
driver.execute_script("window.focus();")