Python 9分30秒おきにChromeを開いて閉じる 2022.02.14import timefrom selenium import webdrivercnt = 0 while True: # chromeを起動する browser = webdriver.Chrome() cnt += 1 time.sleep(550) browser.quit() if cnt>= 48: break
コメント