I'm using selenium and I tried to import the option module from selenium in python:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
and I get this error:
Traceback (most recent call last):
File "C:\Users\GHIE\Desktop\jeahx\kests\test2.pyw", line 2, in <module>
from selenium.webdriver.chrome.options import Options
ImportError: No module named options
from the way I see it the selenium that I have has no module named "Options" but why? any Idea how could I fix this? I'm on windows 7 and python 2.7 thanks