Advertisement
caffeine314

Fidelity - clicking a button 2

Jan 22nd, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Download Fidelity
  3. // @namespace    http://tampermonkey.net/
  4. // @version      2025-01-21
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://digital.fidelity.com/ftgw/digital/portfolio/positions
  8. // @icon         https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  9. // @grant        none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13.     'use strict';
  14.  
  15.     alert('one')
  16.     const aButton = document.getElementById('kebabmenuitem-download')
  17.     alert('two')
  18.     aButton.click()
  19.     alert('three')
  20. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement