How to Solve NameError: name 'Options' is not defined -- selenium

Solution: Import the 'Options' module

To Solve the error, add the following line to the top of your code.

from selenium.webdriver.chrome.options import Options

 

For more information:
Python selenium Options