How to scrape the button title element?

When you login to the site below, there's sometimes an email button for a company. If you click it you can email the company. But the contact's email is actually in the button title text. You can see it if you hover over the button.

Is there any way to scrape the button tile text, in effect scraping the contact's email?

Url: American Maid - National Restaurant Association Show

Sitemap:
{id:"sitemap code"}

You can try to extract email by ElementAttribute... Or you can post a screenshot of a source code to determine exact selector you need

I cant seem to get the elementAttribute to work.
Is this the source code you need?

try this:
ElementAttribute
Selector: .emailbtn
Attribute: title

1 Like

That works!
Thank you very much!