Skip to content

Instantly share code, notes, and snippets.

@adambankin
Created August 23, 2017 18:59
Show Gist options
  • Save adambankin/316855bb4d8f138fb29e1bb387c79fca to your computer and use it in GitHub Desktop.
Save adambankin/316855bb4d8f138fb29e1bb387c79fca to your computer and use it in GitHub Desktop.
var event = new MouseEvent('click', {
view: window,
bubbles: true,
cancelable: true
});
var buttons = document.querySelectorAll('.btn-link.show-outdated-button') || [];
buttons.forEach(button => button.dispatchEvent(event));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment