I try to extract the prices from these page as text in USD from this site
I used an locator //span[@data-originalprice]
with get text of selenium
but still no only numbers, tried also split on \\$
and nothing came
tried some regex text.split("^-?\\d*(\\.\\d+)?$")
and still nothing.
looking for any idea?