I'm using puppeteer in a script with node.js in order to automatically download a file from a website. My problem is that to download this file I need to click on a button but the button looks like this and I don't know how to find the url.
<button type="button" class="v-btn v-btn--fab v-btn--has-bg v-btn--round theme--light elevation-0 v-size--small transparent pa-0" aria-label="Export CSV" title="Export CSV" style="width: 32px; height: 32px;">
<span class="v-btn__content">
<i aria-hidden="true" class="v-icon notranslate mdi mdi-download theme--light primary--text">
</i>
</span>
</button>
TL;DR: I need to get the link a button points to but I can't find it on the html