当前位置: 代码迷 >> 综合 >> 数据科学导论 安装Selenium+chromedriver.exe 测试代码
  详细解决方案

数据科学导论 安装Selenium+chromedriver.exe 测试代码

热度:11   发布时间:2024-02-25 10:00:01.0
//测试是否安装成功的代码from selenium import webdriver#引入驱动器
from selenium.webdriver.chrome.options import Options
options = Options()
#chrome.exe的存放位置,不设置可能会报错
options.binary_location = "C:\Program Files\Google\Chrome\Application\chrome.exe"
#设置chromedriver.exe的位置
driver = webdriver.Chrome(chrome_options=options, executable_path="D:\python\chromedriver.exe", )
#自动弹出百度页面
driver.get("http://www.baidu.com")

 

  相关解决方案