Skip to content

Instantly share code, notes, and snippets.

@gkucmierz
Last active September 9, 2019 13:31
Show Gist options
  • Save gkucmierz/dbdabc13edd38b6f9af533d6ac4826c0 to your computer and use it in GitHub Desktop.
Save gkucmierz/dbdabc13edd38b6f9af533d6ac4826c0 to your computer and use it in GitHub Desktop.
kraken.com - remove old addresses
const actions = [
() => document.querySelector('button[name=delete]').click(),
() => document.querySelector('button.delete-address').click(),
() => document.querySelector('button.back').click()
];
let i = 0;
setInterval(() => actions[(i++)%actions.length](), 1e3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment