browser-options Questions
18
Solved
I'm working on a python script to web-scrape and have gone down the path of using Chromedriver as one of the packages. I would like this to operate in the background without any pop-up windows. I'm...
Sodality asked 24/10, 2017 at 21:23
4
Solved
With Chrome you can add options when creating the driver. You just do
options = Options()
options.headless = True
driver = webdriver.Chrome(PATH\TO\DRIVER, options=options)
But for some reason whe...
Wynnie asked 6/12, 2020 at 17:51
1
© 2022 - 2024 — McMap. All rights reserved.