我在 python collab 中使用 selenium。但我需要在我的笔记本中使用相同的代码(我无法下载 chromedriver)。 代码如下:
!pip install webdriver-manager
!apt update
!apt install chromium-chromedriver
!pip install selenium
options = webdriver.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')
# open it, go to a website, and get results
driver = webdriver.Chrome(options=options)
driver.get("https:....")
我认为这段代码可以在noteboot中运行,但是当我在notebook中运行时,这给了我错误
WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chromium.org/chromedriver/home
是否可以在 notebook 中运行这种代码?