Skip to content

Instantly share code, notes, and snippets.

@ShreyJ1729
ShreyJ1729 / main.js
Created February 23, 2024 00:29
Arts 1301 Automation Script
const questionAnswerCache = {};
const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
/* ------------------ PAGE LEVEL ACTIONS ------------------ */
function clickReadAboutConcept() {
document.getElementsByClassName("lr__action-label")[0].click();
}
function clickBackToQuestions() {