How to wait for either of the two elements in the page using selenium xpath

假装没事ソ 提交于 2019-12-01 12:46:59
DebanjanB

It is possible to wait for one of two elements in the page using ExpectedConditions.or():

WebDriverWait wait = new WebDriverWait(driver, 10);
wait.until(ExpectedConditions.or(
    ExpectedConditions.elementToBeClickable(By.id("idNumber1")),
    ExpectedConditions.elementToBeClickable(By.id("idNumber2"))
)); 

You can also do an OR with a CSS selector using a comma ,:

wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#idNumber1, #idNumber2"));

The xpath looks valid. Use explicit wait to wait for visibility

WebDriverWait wait = new WebDriverWait(driver, 10);
WebElement element = wait.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("//*[(contains(@id,'idNumber1')) or (contains(@id,'idNumber2'))]")));

Try this Xpath :-

By.xpath("//*[contains(@id,'idNumber1') or (contains(@id,'idNumber2'))]"))

Please provide few seconds of wait before move to this code, so your driver may able to find the web-element.

Try this xpath

//*[contains(@id, 'idNumber1') or contains(@id, 'idNumber2')]
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!