HistoryPurge: Clearing 219 old commits
This commit is contained in:
Executable
+11
@@ -0,0 +1,11 @@
|
||||
#!/usr/bin/python3
|
||||
from selenium import webdriver
|
||||
|
||||
url = "https://blog.headdesk.me"
|
||||
options = webdriver.ChromeOptions()
|
||||
options.add_argument('ignore-certificate-errors')
|
||||
|
||||
driver = webdriver.Chrome(options=options)
|
||||
driver.get(url)
|
||||
driver.save_screenshot("site.png")
|
||||
driver.close()
|
||||
Reference in New Issue
Block a user