我试图构建一个机器人,但一开始我需要设置chrome驱动程序,但它已经在我的路径中设置了
from selenium import webdriver
import os
import fxhash.constants as const
from webdriver_manager.chrome import ChromeDriverManager
class Fxhash(webdriver.Chrome):
def __init__(self, driver_path=r"/Users/alexandrejacqueline"):
self.driver_path = driver_path
os.environ['PATH'] += self.driver_path
super(Fxhash, self).__init__()
def land_first_page(self):
self.get(const.BASE_URL)
错误是:
os.path.basename(self.path(,self.start_error_message(selenium.com.mon.exceptions.WebDriverException:消息:"chromedriver"可执行文件需要在PATH中。
有人能帮我吗
最佳
尝试通过chrome驱动程序的绝对路径来选择它。
例如:driver path=r">/Users/user/chrome_driver.exe">