动态地更改了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)