Created
May 6, 2023 10:44
-
-
Save RafayGhafoor/3ffaf0baba52698b82c28fc1f91f54a0 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
| for (let i=0; i< 40;i++) { | |
| try { | |
| document.getElementsByName(`radios[${i}]`)[0].checked = true; | |
| } catch { | |
| console.log("Error"); | |
| } | |
| } | |
| document.getElementById("submit").click(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment