I have following code:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
options = Options()
options.add_argument('--headless')
options.add_argument('--disable-gpu')
driver = webdriver.Chrome("chromedriver.exe", chrome_options=options)
driver.get("*some site*")
When i start debugging, it stucks at the driver.get("*some site*")
line. It simply does not start anything.
Any suggestions please?
Everything is up to date. Using windows 7.
EDIT: using Python 3.6
EDIT 2: hope its helpful