In [ ]:
import sys
sys.path.append("..")
from selenium import webdriver

In [ ]:
from degiro import util

In [ ]:
acc = util.DgAccount()
acc

In [ ]:
options = webdriver.ChromeOptions()
# options.add_argument('headless')
driver = webdriver.Chrome(util.get_chrome_driver_path(),
                          chrome_options=options)

In [ ]:
acc.login(driver)

In [ ]:
driver.close()