I'm trying to web scrape the product price on this site: https://www.webhallen.com/se/product/232445-Logitech-C920-HD-Pro-Webcam
I tried using
price = str(soup.find('div', {"class": "add-product-to-cart"}))
and
price = soup.find(id="add-product-to-cart").get_text()
But unfortunately, I had no luck. The item returns no price. The price/text is stored in a span class.