-
-
Notifications
You must be signed in to change notification settings - Fork 462
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
webdriver-manager with error on Chromium #669
Comments
Can you show the traceback? |
Probably the same error:
|
Basically the problem is that https://googlechromelabs.github.io/chrome-for-testing/latest-patch-versions-per-build.json dosen't contain entries for e.g. '133.0.6902'. Probably this problem is encountered by people using the very latest chromium release (which is the one that's easiest to download, since chromium doesn't have a regular release cadence but rather just publishes every snapshot) |
import pandas as pd
import mysql.connector
from bs4 import BeautifulSoup
from time import sleep
from datetime import datetime
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import NoSuchElementException
from selenium import webdriver
from selenium.webdriver.chrome.service import Service as ChromiumService
from webdriver_manager.chrome import ChromeDriverManager
from webdriver_manager.core.os_manager import ChromeType
driver = webdriver.Chrome(service=ChromiumService(ChromeDriverManager(chrome_type=ChromeType.CHROMIUM).install()))
AttributeError: 'NoneType' object has no attribute 'get'
The text was updated successfully, but these errors were encountered: