Modulenotfounderror: No Module Named 'selenium' Message
I'm trying to send a Whatsapp-Message via a Python script, therefor I'm using the following code: from selenium import webdriver from selenium.webdriver.support.ui import WebDriver
Solution 1:
Try updating your selenium version using this command, maybe it helps:
python -m pip install -U selenium
Post a Comment for "Modulenotfounderror: No Module Named 'selenium' Message"