Hi all,
I have created flow to Extract data from webpages using custom data attributes 'data-label'.
But it did not work when the 'data-label' values only numbers.
HTML like this:
<ul id="data">
<li data-label="256">Data1</li>
<li data-label="a01">Data2</li>
</ul>
Extraction mode: List,
Page CSS selector: ul#data > li
Extract element value > custom attribute: data-label
Result:
1st value: blank (* this is wrong, must be able to get the value "256".)
2nd value: a01 (this is correct.)
Would it be possible to get the values only numbers?
FYI, Attributes as 'id' and 'class' could be obtained without problems even if the values only numbers.
I use latest versions of Power Automate for desktop.
I would appreciate any help or idea.
Thanks,