youtube_uploader_selenium
youtube_uploader_selenium copied to clipboard
pip package seems to be broken
ImportError: cannot import name 'By' from 'selenium_firefox.firefox' (/usr/local/lib/python3.10/dist-packages/selenium_firefox/firefox.py)
After some research i found this line of code in your pip package: from selenium_firefox.firefox import Firefox, By , Keys
on your repo it is from selenium_firefox.firefox import Firefox from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys
you might want to check that out :)
had to change it manualy. now it works as intended
how did you change it manually? did you just get rid of the By?