this python script automatically refreshes the approval queue page. make a new text document, paste the code, save as "whatever.py", open command prompt, and then run "python whatever.py"
once you login it will send you to the approval queue and will automatically refresh it
you can adjust the "refresh_interval" variable to make it slower or faster
from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import time
import threading
login_url = "
imgflip.com/login"
queue_url = "
imgflip.com/approval-queue?stream=MS_memer_group"
driver = webdriver.Chrome()
driver.get(login_url)
WebDriverWait(driver, 999999).until_not(EC.url_matches(login_url))
driver.get(queue_url)
refresh_interval = 1
refresh_event = threading.Event()
refresh_event.set()
def refresh_loop():
while True:
time.sleep(refresh_interval)
refresh_event.wait()
driver.refresh()
refresh_thread = threading.Thread(target=refresh_loop)
refresh_thread.start()
while True:
command = input()
if command == "p":
print("paused")
refresh_event.clear()
elif command == "up":
print("resumed")
refresh_event.set()
else:
print("invalid cmd - p to pause, up to unpause")