xiaosi4081 发表于 2020-6-1 08:52:35

selenium安装问题,急

本帖最后由 xiaosi4081 于 2020-6-1 08:54 编辑

代码:
#鱼c登陆程序
from selenium import webdriver

wd = webdriver.Chrome(r"D:\webdrivers\chromedriver.exe")
wd.get("https://fishc.com.cn")

username = input("请输入用户名:")
password = input("请输入密码:")

# 输入用户名
wd.find_element_by_id('ls_username').send_keys(username)
wd.find_element_by_id('ls_password').send_keys(password)
wd.find_element_by_xpath('//*[@id="lsform"]/div/div/table/tbody/tr/td/button').click()

# 跳转至登录页面
qdurl = wd.find_element_by_xpath('//*[@id="mn_Nac60"]/a').get_attribute("href")
wd.get(qdurl)

# 点击"登录"按钮
key = wd.find_element_by_xpath('//*[@id="JD_sign"]')
key.click()

wd.quit()

报错:
selenium.common.exceptions.WebDriverException: Message: 'chromedriver.exe' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home

chromedriver.exe也装了
也放到了chrome根目录和python根目录
就不知为什么报错,chrome版本也是匹配的

Twilight6 发表于 2020-6-1 08:59:40

把 chromedriver.exe 放到Python根目录下的Scripts 目录下

xiaosi4081 发表于 2020-6-1 09:05:32

Twilight6 发表于 2020-6-1 08:59
把 chromedriver.exe 放到Python根目录下的Scripts 目录下

放了,但是毫无作用

xiaosi4081 发表于 2020-6-1 09:06:27

Twilight6 发表于 2020-6-1 08:59
把 chromedriver.exe 放到Python根目录下的Scripts 目录下

但是我运行这段代码是正常的:
#!/usr/bin/python
# -- coding: UTF-8 --
from selenium import webdriver
import time
driver = webdriver.Chrome()

driver.get("http://www.baidu.com")
driver.find_element_by_id('kw').send_keys('selenium')
#selenium 元素查找find_element_by_id方法,找到元素后输入信息
driver.find_element_by_id('su').click()
#selenium 元素查找find_element_by_id方法,找到元素后进行点击
time.sleep(5)
driver.quit()

Twilight6 发表于 2020-6-1 09:06:33

xiaosi4081 发表于 2020-6-1 09:05
放了,但是毫无作用

你谷歌版本号发我下

Twilight6 发表于 2020-6-1 09:07:49

xiaosi4081 发表于 2020-6-1 09:06
但是我运行这段代码是正常的:

那说明不是浏览器的问题

Twilight6 发表于 2020-6-1 09:08:37

xiaosi4081 发表于 2020-6-1 09:06
但是我运行这段代码是正常的:

wd = webdriver.Chrome(r"D:\webdrivers\chromedriver.exe") 把路径删了 , 应该是用了别人的路径了

wp231957 发表于 2020-6-1 09:24:42

D:\webdrivers\chromedriver.exe   这个路径下没有这个文件
页: [1]
查看完整版本: selenium安装问题,急