Skip to content

Instantly share code, notes, and snippets.

@roberto-butti
Last active December 20, 2019 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roberto-butti/ac4dfe68e0e02d1af9c784c42895cedd to your computer and use it in GitHub Desktop.
Save roberto-butti/ac4dfe68e0e02d1af9c784c42895cedd to your computer and use it in GitHub Desktop.
Click all images in the web page, with the id that begins with "approve_img_"
[].forEach.call(
document.querySelectorAll('img[id^="approve_img_"]'),
function(select) {
select.click();
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment