ScooterNorm
New Member
- Joined
- Feb 25, 2024
- Messages
- 22
- Office Version
- 2016
- Platform
- Windows
I am trying to download the PDF file from this Web page.
The HTML code looks like:
The web page has a button called "Download PDF" which I am trying to emulate.
I believe the button is executing
It is using javascript, I think, which I am far from an expert with. So how can I simulate the button "Download PDF" being pushing?
Thanks for all your help,
VBA Code:
https://tsdr.uspto.gov/documentviewer?caseId=sn97775647&docId=NFIN20231101163538&linkId=5#docIndex=0&page=1
The HTML code looks like:
Code:
...
<input id="back" type="button" class="page displayNone" value="Back" title="back to normal display (b)"></input></span>
<h3>USPTO TSDR Case Viewer
<a class="tdr_search1 helpIconh2" href="javascript:page.helpOverlay.open( 'doc_viewer' )" title="Click here for help on case searches (1) Document viewer help">
<img class="helpIcon docs" src="img/icn-Help16x16.gif" alt="Help"></img>
</a>
</h3>
...
The web page has a button called "Download PDF" which I am trying to emulate.
I believe the button is executing
VBA Code:
"<a class="tdr_search1 helpIconh2" href="javascript:page. ..."
It is using javascript, I think, which I am far from an expert with. So how can I simulate the button "Download PDF" being pushing?
Thanks for all your help,