Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. document.querySelectorAll('font>a').forEach(e=>{
  2. const i=document.createElement('iframe');
  3. i.src=e.href;
  4. document.body.appendChild(i);
  5. i.onload= _ => {
  6. const iw = i.contentWindow;
  7. iw.alert=console.log;
  8. [...iw.document.querySelectorAll("input[type=radio]")].filter((_,i)=>i%5===0).forEach(x=>x.checked=true);
  9. iw.document.querySelector("input#Btn_save").click();
  10. }
  11. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement