I'm trying to do a wait in which the driver waits until all the elements of the same class are located.
For Example:
If class is foo
I try:
WebDriverWait(driver, 5).until(EC.presence_of_element_located((By.CLASS_NAME, 'foo')))
I think this only waits for the first occurring element in that class. Anyone know how I can wait until all elements of that class are located.