我对selenium完全不熟悉,当我写这段代码时,我从chrome那里得到一个错误,说“Chrome驱动程序已经停止工作”,它要求我关闭chrome。
from selenium import webdriver
chrome_path="C:\Python27\Scripts\chromedriver.exe"
driver=webdriver.Chrome(chrome_path)
driver.get("https://www.google.com")
在我的IDLE
中执行此行之后驱动= webdriver.Chrome(chrome_path)
Chrome已打开,但说“您正在使用不受支持的命令行标记: - ignore-certificate-errors。稳定性和安全性将受到影响。”然后会弹出一个对话框,告诉我“禁用开发者模式扩展”
输入此行后
driver.get( “https://www.google.com”)
出现一个对话框,提示chromedriver.exe已停止工作,它为我提供了一个关闭程序的按钮。有时这不会立即出现,我在IDLE GUI上遇到了一些错误。 Click me for the error image
几个细节: -
Chrome版本: - 60.0.3112.101
chromedriver版本: - 2.9.248315
Python版: - 2.7.13