Skip to content

Instantly share code, notes, and snippets.

@Developer-Incoming
Last active March 6, 2025 14:42
Show Gist options
  • Save Developer-Incoming/9220ffb242bde7e424e370b05737a2ff to your computer and use it in GitHub Desktop.
Save Developer-Incoming/9220ffb242bde7e424e370b05737a2ff to your computer and use it in GitHub Desktop.
KSU Auto Lecturer Rating
// Run in browser's console, and then simply check the agreement bias questions, and then you're ready to go.
document.querySelectorAll("div").forEach(div => {
const label = div.querySelector("label");
if (label && label.textContent.trim() === "موافق تماماً") div.querySelector('input[type="radio"]').checked = true;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment