Hello all,
There is a tutorial about how to extract the data from different elements from the web page.
Power Automate Desktop - Web Extraction Part 1 | Price extraction from web page - YouTube
I had a quick test in my environment, however I couldn't find the right content of CSS Selector at minute 3:12.
The original content of the selector is: a > div:eq(1) > div > div > span:eq(2) > span:eq(3)
(As you can see in the video, the product that doesn't have a promo price would be blank)

I modified the content to: a > div:eq(1) > div > div > span:eq(2) > span:contains("$")
And it would show me the full price of all products.

What I want is the current price, and it should be flexible field as you can see in the video.
Could somebody help me please? Thanks!