I have Python 3. I wrote a script that opens the Chrome browser. But I would like to run that script on a specific time of the day. This is not repeated scheduling or anything. I just want it to run at a specific time of the day. I am at Pacific Standard Time.
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
options = webdriver.ChromeOptions()
options.add_experimental_option("detach", True)
driver = webdriver.Chrome(options=options, service=Service("C:\\Users\\marts\\Downloads\\Chromedriver110\\chromedriver.exe"))
driver.get("https://www.google.com")