I have a python script that scraps data off from a website on an hourly basis. It is stored on the server at the moment and is working well as I am using task scheduler to sched
Could'nt you scrape in headless mode? (example for chrome)
chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--headless') chrome_options.headless = True ... driver = webdriver.Chrome(chrome_options=chrome_options) driver.create_options()