A feature in my EXTJS application includes a page with an Email button. When this button is clicked, it generates a link to the page contents and opens the default email client with this link in the body.
Upon inspecting the DOM, I found that the Email button only consists of the following code:
<span id="basebutton-1358-btnInnerEl" data-ref="btnInnerEl" unselectable="on" class="x-btn-inner x-btn-inner-basebutton-large">Email</span>
Throughout the entire DOM, there is no mention of 'mailTo'.
The main focus here is to verify the link generated upon clicking the button. Whether or not it actually opens an Email client is not a concern for me.