Im trying to extract a list from webpage using selenium and python. I need to import it as list in order to find elements inside that list later using python code.
this is how its stored in the webpage:
...<input type="hidden" name="GridContainerDataV" value="[["7131090","Arvejas, Enteras Verdes","400","",""],["71311099","Arvejas, Enteras Azules","520","abril/2021","mayo/2021"],["71311100","lo que sea","720","junio/2021","diciembre/2021"],...]]" autocomplete="off">
This is how I tried to extracted (Im super begginer in python):
try:
tabla = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.NAME, "GridContainerDataV")))
print(tabla.value)