admin管理员组文章数量:1434909
I need to download all my 30 bank account monthly statements from Wells Fargo for my pany for the year 2015. This is what Wells Fargo lets customers do now:
(1) click "Statements and Disclosures"
(2) click "Select account"
(3) click "For time period"
(4) click the pdf file of the month I want to download
(5) the pdf loads on the browser
(6) click the download button on the opened pdf
(7) click save
(8) click back button to download the next month's statement
This is too tedious and too time consuming. I use FireFox, and FireFox has an add-on called "Down Them All." This add-on works on regular links. However, the links of the monthly statements from Wells Fargo appear to go to "javascript:{0}" or similar code when I hover my mouse pointer over the links, and "Down Them All" cannot find the links.
Is there any other way to batch download?
Thank you very much for your help !!
Lisprog M
I need to download all my 30 bank account monthly statements from Wells Fargo for my pany for the year 2015. This is what Wells Fargo lets customers do now:
(1) click "Statements and Disclosures"
(2) click "Select account"
(3) click "For time period"
(4) click the pdf file of the month I want to download
(5) the pdf loads on the browser
(6) click the download button on the opened pdf
(7) click save
(8) click back button to download the next month's statement
This is too tedious and too time consuming. I use FireFox, and FireFox has an add-on called "Down Them All." This add-on works on regular links. However, the links of the monthly statements from Wells Fargo appear to go to "javascript:{0}" or similar code when I hover my mouse pointer over the links, and "Down Them All" cannot find the links.
Is there any other way to batch download?
Thank you very much for your help !!
Lisprog M
Share Improve this question asked Jun 23, 2016 at 8:20 lisprogtorlisprogtor 5,74913 silver badges19 bronze badges 2- you can take a look at selenium – npocmaka Commented Jun 23, 2016 at 8:24
- Is there any pattern in the PDF link? Maybe you can generate the links for each month by incrementing some URL parameter – Florian Straub Commented Jun 23, 2016 at 8:33
1 Answer
Reset to default 5UPDATED ANSWER (2021) Here's a munity-written script that will help people out with this, bunch of people had the same pain point. https://github./binary1230/wellsfargo-bulk-PDF-statement-downloader
ORIGINAL ANSWER: I had the same issue with their new website and I've written a small script you can run from the Chrome Developer console that does this (works as of 10/12/2017, might break if they change their site in the future).
To use this, do the following each time you have the links on-screen that you want to download:
In Chrome browser, navigate to your wells fargo statement viewer and pull up the set of PDFs you want to view
Press F12 to open the developer tools and click the tab at the bottom that says 'Console'
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)
I uploaded this code to https://gist.github./binary1230/7cfa0524d0fae7c320e3b15fc1f4f64c and there are some ments there from other Wells Fargo users with the same pain. This issue is also on their forums here at: https://www.wellsfargomunity./thread/9286
版权声明:本文标题:batch file - How to automatically download multiple links that are controlled by javascripts? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745628588a2667127.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论