I'm trying to obtain the price text in the following html code:
<span class="item-price js-variant-price" content="79.95" itemprop="price">79,95 TL</span>
Using the code, i have this
prices2=driver.find_element(By.XPATH, "//span[@class='item-price.js-variant-price'")
but so far it can't get the "79.96" value, what am I doing wrong?
