@eieio@mastodon.gamedev.place
something like this with selenium?
while b<1000000:
try:
if EC.alert_is_present():
alert = driver.switch_to.alert
alert.accept()
except:
box = driver.find_element(By.ID, "checkbox-"+str(b))
if not box.is_selected():
box.click()
time.sleep(0.1)
b=b+1
it would be more fun without the spam protection, i want to play bad apple on this.