I am trying to iterate through all items which have the class name status ready, and then do something at each iteration.
My problem is that, even if I wait a long time to search for that class name, it is not found:
wait(driver, 600).until(EC.presence_of_element_located((By.CLASS_NAME, "status ready")))
Here is the the top part of the inspection from chrome http://pastebin.com/4aMyb8yV
(the important part is class='status ready') The website is scrolls infinitely, but I would like to iterate through elements, even if I don't see them at the beginning.