代码之家  ›  专栏  ›  技术社区  ›  lpt

for循环在运行时更改的selenium-DOM对象中过早存在

  •  -2
  • lpt  · 技术社区  · 6 年前

    项目数为50项。

    但是下面的for循环在单击第一个项目后退出,有没有想过我遗漏了什么?

    for i in  range(0, len(x)):
            time.sleep(2)
            if x[i].is_displayed():
                print(i)
    
    
                pageClicked = WebDriverWait(driver, 2).until(
                    ec.element_to_be_clickable((By.XPATH,
                                                 "/html/body/div/div/div/div/router-view/div[1]/div/div[1]")))
    
                pageClicked.click()
    
                x[i].click() #removes the item
    
                """This is hardcoded part, TODO remove this """
                removalConfirm = WebDriverWait(driver, 2).until(
                    ec.element_to_be_clickable((By.XPATH, "/html/body/ux-dialog-container/div/div/ux-dialog/ux-dialog-body/form/div[2]/button[1]")))
                #
                """"remove from the wishlist """
                removalConfirm.click() #receive confirmation
                i=i+1
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   lpt    6 年前

    动态地更改了DOM对象,所以我不得不重新获取DOM对象。接下来的工作。

     x = driver.find_elements_by_id(
                    ObjectManager().getObjectIdentifierValue(driver, "Patron", "WishlistPage", "wishListCloseAll"))
    
                #print(len(x))
    
                for i in  range(0, len(x)-1):
                    time.sleep(2)
                    """Since the dom objects change on the fly, they need to named"""
                    x = driver.find_elements_by_id(
                        ObjectManager().getObjectIdentifierValue(driver, "Patron", "WishlistPage", "wishListCloseAll"))
    
                    #print('lenght of x', len(x))
    
    
                    if  x[i].is_displayed():
                        if x[i].is_displayed():
                            x[i].click()
                           #print('x', x[i])
    
                            """This is hardcoded part, TODO remove this """
                            removalConfirm = WebDriverWait(driver, 2).until(
                                ec.element_to_be_clickable((By.XPATH, "/html/body/ux-dialog-container/div/div/ux-dialog/ux-dialog-body/form/div[2]/button[1]")))
                            #
                            """"remove from the wishlist """
                            removalConfirm.click()
                            i=i
                            #print(i)
    
                    time.sleep(2)