Skip to content

Instantly share code, notes, and snippets.

@splitline
Created June 6, 2019 08:51
Show Gist options
  • Save splitline/87c35bbfd86430b9cdef79f86983bf4d to your computer and use it in GitHub Desktop.
Save splitline/87c35bbfd86430b9cdef79f86983bf4d to your computer and use it in GitHub Desktop.
document.querySelectorAll('font>a').forEach(e=>{
const i=document.createElement('iframe');
i.src=e.href;
document.body.appendChild(i);
i.onload= _ => {
const iw = i.contentWindow;
iw.alert=console.log;
[...iw.document.querySelectorAll("input[type=radio]")].filter((_,i)=>i%5===0).forEach(x=>x.checked=true);
iw.document.querySelector("input#Btn_save").click();
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment