XPath returns blank

Hi,

I'm trying to extract information from the following site:

https://www.condisline.com/MUSLITOS-PESCANOVA-DEL-MAR-250-G_181584_prd_es_ES.jsp

The information I'm trying to retrieve are located on the follow XPath (obtained from Chrome Inspect Tool):

//[@id="list_price_181584"]
//
[@id="sale_price_181584"]

I tried different approaches but the result was a blank cell.

Any one knows how to solve this?

Thanks.

Hi,

I think some type of javascript is generating the prices which makes this messy. I also get blanks or just a dollar sign depending on the xpath method. However, when I extract a parent node I get a long string which includes what you are looking for:

Are you familiar with regex and extracting parts of strings? If so, you can combine it with my xpath to get the prices.

Perfect. It worked!!!
Thanks!!!