-3
lista= ["2,55","3,4","3,83","5,1","6,8"]
for i in range(len(lista)):
lista[i] = lista[i]
#PREEENCHER VALOR
navegador.find_element_by_xpath('...').send_keys(lista[i])
time.sleep(3)
#obter valor #
valor = navegador.find_element_by_xpath('...')
valor = valor.text[:-3].replace(',', '.')
I would like to store each value generated for each interaction made.
Welcome to Stackoverflow in English, you may want to take a tour: pt.stackoverflow.com/tour or take a look at Help Center: pt.stackoverflow.com/tour and see how to ask questions in a way that can be answered quickly, try to report what you have tried and post your code, hardly anyone will do the job for you. Since you do not have an idea of how to do what you need, initially it is better to do a survey and then if you have some difficulty in programming you can ask again here.
– Leticia Rosa