So I am trying to use the selenium webdriver in a python script as follows:
from selenium import webdriver
Now this is all fine and dandy when I do it within the python shell, but if I write it into a script it tells me
Traceback (most recent call last):
File "c:/Users/gvasquez/Scripts/viaUpdate.py", line 2, in <module>
from Selenium import webdriver
ModuleNotFoundError: No module named 'selenium'.
Any thoughts? Thanks.
from Selenium import webdriverCapitalization matters. Why are you using a capitalS?Traceback (most recent call last): File "C:\Users\gvasquez\Scripts\viaUpdate.py", line 2, in <module> from selenium import webdriver ModuleNotFoundError: No module named 'selenium'