Created
March 5, 2022 18:36
-
-
Save pulkitpareek18/a0eeca08bfc33b737a25e2f9a8985d9f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let more_btn = document.getElementsByClassName("wpO6b")[0]; | |
let report_btn = document.getElementsByClassName("aOOlW -Cab_ ")[0]; | |
let category_btn = document.getElementsByClassName("b5k4S")[1]; | |
let option_btn = document.getElementsByClassName("b5k4S")[3]; | |
let submit_btn = document.getElementsByClassName("sqdOP L3NKy y3zKF")[0]; | |
let close_btn = document.getElementsByClassName("sqdOP L3NKy y3zKF")[0]; | |
let reported_times = 0; | |
function all(){more_btn.click();console.log("more"); | |
setTimeout(repo_btn , 5000); | |
} | |
function repo_btn(){ | |
report_btn = document.getElementsByClassName("aOOlW -Cab_ ")[0]; | |
report_btn.click();console.log("report"); | |
setTimeout(cat_btn , 7000); | |
} | |
function cat_btn(){ category_btn = document.getElementsByClassName("b5k4S")[1]; | |
category_btn.click();console.log("category"); | |
setTimeout(opt_btn , 7000); | |
} | |
function opt_btn(){ option_btn = document.getElementsByClassName(" qF0y9 Igw0E rBNOH eGOV_ ybXk5 vwCYk XfCBB g6RW6 ")[3]; | |
option_btn.click();console.log("options"); | |
setTimeout(sub_btn , 7000); | |
} | |
function sub_btn(){ submit_btn = document.getElementsByClassName("sqdOP L3NKy y3zKF")[0]; | |
submit_btn.click();console.log("submit"); | |
setTimeout(x_btn , 2000); | |
} | |
function x_btn(){ close_btn = document.getElementsByClassName("sqdOP L3NKy y3zKF")[0]; | |
close_btn.click();console.log("close"); | |
reported_times++; | |
console.log("Reported_" + reported_times + "_times_in_this_turn."); | |
all();} | |
all(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment