I have the following situation
values = driver.find_elements(By.CLASS_NAME, "roulette-history-item__value-textsiwxWvFlm3ohr_UMS23f")
I get list with 260 keys, So far, okay! However, I need this simplified list, with just the text
values = driver.find_elements(By.CLASS_NAME, "roulette-history-item__value-textsiwxWvFlm3ohr_UMS23f").get_attribute("innerHTML")
Is there any possibility to get something like this above? With find_element it works fine. find_elementS not work.
A loop with values[x].text is too slow. I tested it with a simple array, without the ".text" and it's 1000x faster.