Selenium Expected Conditions - possible to use 'or'?

后端 未结 3 980
星月不相逢
星月不相逢 2020-12-01 06:23

I\'m using Selenium 2 / WebDriver with the Python API, as follows:

from selenium.webdriver.support import expected_conditions as EC

# code that causes an aj         


        
3条回答
  •  -上瘾入骨i
    2020-12-01 06:59

    I did it like this:

    class AnyEc:
        """ Use with WebDriverWait to combine expected_conditions
            in an OR.
        """
        def __init__(self, *args):
            self.ecs = args
        def __call__(self, driver):
            for fn in self.ecs:
                try:
                    if fn(driver): return True
                except:
                    pass
    

    Then call it like...

    from selenium.webdriver.support import expected_conditions as EC
    # ...
    WebDriverWait(driver, 10).until( AnyEc(
        EC.presence_of_element_located(
             (By.CSS_SELECTOR, "div.some_result")),
        EC.presence_of_element_located(
             (By.CSS_SELECTOR, "div.no_result")) ))
    

    Obviously it would be trivial to also implement an AllEc class likewise.

    Nb. the try: block is odd. I was confused because some ECs return true/false while others will throw exceptions for False. The Exceptions are caught by WebDriverWait so my AnyEc thing was producing odd results because the first one to throw an exception meant AnyEc didn't proceed to the next test.

提交回复
热议问题