Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I have two elements I can wait for, I want to wait until either of them appears on the page.

I am trying to use xpath locator. But it is not working.

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

Is this achievable?
Please help me out.

like image 467
karthik inamanamelluri Avatar asked Oct 24 '25 21:10

karthik inamanamelluri


1 Answers

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"));
like image 74
undetected Selenium Avatar answered Oct 26 '25 11:10

undetected Selenium