I am facing an issue with webdriver-manager, for Firefox.
This is my code.
from selenium import webdriver
from selenium.webdriver.firefox.service import Service
from webdriver_manager.firefox import GeckoDriverManager
driver = webdriver.Firefox(service=Service(GeckoDriverManager().install()))
driver.get("https://google.com")
time.sleep(5)
I am running into this issue.
[WDM] - ====== WebDriver manager ======
[WDM] - Current firefox version is 101.0
[WDM] - Get LATEST geckodriver version for 101.0 firefox
[WDM] - GH_TOKEN will be used to perform requests
ValueError: API Rate limit exceeded. You have to add GH_TOKEN!!!
I have gone through a bunch of videos on YouTube where people use webdriver_manager for Firefox but none of them even encounter this error, they also do not mention the use of any GH-Token.
I don't want to use a GH_Token.
How do I resolve this issue ?
Creating a token in GitHub.
Configuration
import os
os.environ['GH_TOKEN'] = "paste Generate token "