i have problem when running this code :
>>> from selenium import webdriver >>> driver = webdriver.firefox() Traceback (most recent call las
You have made a typo.
webdriver.Firefox()
Note the capital F.
the same goes for other browsers!
e.g.
webdriver.chrome Vs. webdriver.Chrome
(its even harder to notice this!)
thanks so much for the help! ;)