import undetected_chromedriver as uc

options = uc.ChromeOptions()
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--disable-dev-shm-usage')

driver = uc.Chrome(options=options,headless=True,use_subprocess=False,version_main=105)
driver.get('https://nowsecure.nl')
html = driver.page_source
print(html)
