Help identifying a target object

This is the code that I need extract the price from

<span class="price-container price-final_price js-split-std-4520 js-tabbed-price js-tabbed-price-split" style="display:block">
<span id="product-price-split-4520" class="price-wrapper price-excluding-tax">
<span class="price">€27.43</span</span>(ex VAT)</span>

In the page, the unique class in the parent span is 'js-tabbed-price-split' but I don't seem to be able to work out how to get to the price

Can anyone help please?

@beau Hi, could you, please, provide us with the targeted URL?

In any case, it appears that you should be able to extract this data by using the following 'Text' selector:

span.js-tabbed-price-split + span + span

Hi
Thanks for the reply - the website is behind a paywall so I can't provide the URL as it needs a username and password.
I'll take a look at your suggestion :slight_smile:
Thanks again