Forked from binary1230/wells fargo website bulk statement downloader
Created
February 13, 2019 05:37
-
-
Save CarlosSolrac/16b0eadb0cca55c071d34a130c005619 to your computer and use it in GitHub Desktop.
wells fargo ability to download all bank statements
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wells fargo's new statement viewer sucks to use because due to the way they set it up. | |
Each time you click a statement PDF, you have to re-navigate the entire section including accounts and dates which takes FOREVER. | |
Doing this for 3-4 accounts for 12 statements is an multi-hour grind of horrible user experience which should instead take 30 seconds. | |
The following code snippet will make it so you can get every PDF on that page without hassle (y'know.. like every other website in the world) | |
To use this, do the following each time you have the links on-screen that you want to download: | |
1) In Chrome browser, navigate to your wells fargo statement viewer and pull up the set of PDFs you want to view | |
2) Press F12 to open the developer tools and click the tab at the bottom that says 'Console' | |
3) Paste the following code into the developer console, then press ENTER | |
$("a[data-pdf='true']").each(function(i,el) {$(el).attr('href', $(el).attr('data-url'));}); | |
Now that this is done, you can right click on each link and click Save As... to save each PDF (or use a download manager to get them all) | |
UPDATE: see @trevorfox's suggestions in the comments of this gist for another method that lets you do alternate things. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
by trevorfox