I've been running the same python script using windows task scheduler for the past month, then all of a sudden the script runs into an Insufficient Resources error (see below). My CPU and RAM are at normal levels (CPU is <10% and RAM is <20%) when I try to run the program. I have quadrupled both the CPU and RAM on the virtual machine, but I still get the same error.
This is the code I'm trying to run:
from selenium import webdriver
browser = webdriver.Firefox()
This is the error I'm getting:
Traceback (most recent call last):
File "Desktop\Scripts\Selenium_file.py", line 34, in
browser = webdriver.Firefox()
File "C:\ProgramData\Anaconda3\lib\site-packages\selenium\webdriver\firefox\webdriver.py", line 164, in __init__
self.service.start()
File "C:\ProgramData\Anaconda3\li