Skip to content

Instantly share code, notes, and snippets.

@bqcuong
Created July 4, 2024 14:52
Show Gist options
  • Select an option

  • Save bqcuong/8d4ad16475db6c901d895690d07bc361 to your computer and use it in GitHub Desktop.

Select an option

Save bqcuong/8d4ad16475db6c901d895690d07bc361 to your computer and use it in GitHub Desktop.
UEFA
console.log("---> Running scripts....");
let text = document.getElementById("main_content_container").getElementsByClassName("category semantic-no-styling")[0].innerText.trim();
//if ("Prime Seats" == text) {
if (text.startsWith("Category")) {
document.getElementById("book").click();
alert("Match found!!!");
}
else {
setTimeout(function(){history.go(0);}, Math.random() * (2000) + 3000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment