无法使用Selenium Webdriver在Foreground上打开浏览器

时间:2017-11-21 08:08:14

标签: python-3.x selenium-webdriver selenium-chromedriver

我正在尝试使用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()

如果我在这里做错了,请告诉我。

1 个答案:

答案 0 :(得分:0)

如果Web Browser打开但仍在后台,请使用以下代码块将其置于焦点位置:

driver.get('https://www.google.com')
driver.execute_script("window.focus();")