selenium.webdriver.support.expected_conditions' has no attribute 'visibility_of_all_elements_located
Any idea why? Does this have to do with the version of selenium:
Code:
priceFound = wait.until(EC.visibility_of_all_elements_located((By.XPATH, "//span[@class='a-price']")))
for price in priceFound:
print(price.text)