Skip to content

Instantly share code, notes, and snippets.

@akopcz2
Created August 10, 2017 21:23
Show Gist options
  • Save akopcz2/4e69792c1c565460c7ad01f5e9093982 to your computer and use it in GitHub Desktop.
Save akopcz2/4e69792c1c565460c7ad01f5e9093982 to your computer and use it in GitHub Desktop.
let n = document.querySelectorAll('.btn.btn-default.option.agree.min');
let clickFinish = () => {
let nb = document.getElementById('nextbut');
nb.click();
}
let clickSubmit = () => {
let sb = document.getElementById('submbut');
sb.click();
}
[...n].forEach((el, i) =>{
el.click();
if([...n].length -1 === i){
clickFinish();
clickSubmit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment