How Can I extract the value using selenium and python, My end goal is to store this value in a csv.
What I have tried:
#element= driver.find_element_by_xpath("//*[@class='rt-tr-group']")
elements = driver.find_elements_by_class_name("product-form__price")
for value in elements:
print(value.text)
But this returns an empty list?