Scraping text id's from SVGs

Hi guys and gals.

I'm trying to scrape diamond information from reports. After a design change a few weeks ago, some of the data moved from tables into a SVG. What I still need to include are attributes like Table Width, Crown​ Height, Pavillion​ Depth and so on.

All of them are present in the following file: https://www.igi.org/wp-content/themes/bootscore-child/img/measure.svg

When looking at the source code I noticed that all the elements I need are visible within a text id, e. g.:

<text xmlns="http://www.w3.org/2000/svg" id="propsTW" style="fill: rgb(51, 51, 51); font-family: Arial, sans-serif; font-size: 13px; white-space: pre; text-anchor: middle;" x="153.46" y="45.84">60%</text>

You can find one of the reports here.

Any help to guide me into the right direction are highly appreciated.

Thanks in advance!

no problems at all
image
each text selector has its own ID, so you can retrieve data easily...
use ElementAttribute:
text#propsPA tspan

choose attribute: x