An Expected Condition is just a callable, you can define it as a simple function:
def not_busy(driver):
try:
element = driver.find_element_by_id("xxx")
except NoSuchElementException:
return False
return element.get_attribute("aria-busy") == "false"
self.wait.until(not_busy)
A bit more generic and modular, though, would be to follow the style of the built-in Expected Conditions and create a class with a overriden __call__()
magic method:
from selenium.webdriver.support import expected_conditions as EC
class wait_for_the_attribute_value(object):
def __init__(self, locator, attribute, value):
self.locator = locator
self.attribute = attribute
self.value = value
def __call__(self, driver):
try:
element_attribute = EC._find_element(driver, self.locator).get_attribute(self.attribute)
return element_attribute == self.value
except StaleElementReferenceException:
return False
Usage:
self.wait.until(wait_for_the_attribute_value((By.ID, "xxx"), "aria-busy", "false"))
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…