I'm trying to get a number(the value of bitcoin) from a site, using this code
from selenium import webdriver
driver = webdriver.Firefox()
driver.get('https://it.tradingview.com/symbols/BTCEUR/?exchange=BINANCE')
el = driver.find_element_by_class_name('tabValue-HYHP1WHx')
el_value = el.get_attribute("value")
print(el)
driver.quit()
It should print a number, but it prints None. I tryed to use other modules such as .getText, but the result is always None. What can I use to get the value I want?
