i use python 3.6.4 and install selenium with pip command
pip install -U selenium when i use a simple code like this
from selenium import webdriver
browser = webdriver.Firefox()
browser.get('http://seleniumhq.org/')
i get error:
from selenium.firefox.webdriver import WebDriver
ImportError: No module named 'selenium.firefox'
i download chromedriver.exe and add this path to system environment bot not working how can i fix this problem?