Skip to content
Snippets Groups Projects
Commit 00dc67d9 authored by Simon Urli's avatar Simon Urli
Browse files

[Misc] Trying to understand a bit more flickering CopyPageTest

parent 8ba255e2
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,7 @@
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.TimeoutException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebDriverException;
import org.openqa.selenium.WebElement;
......@@ -69,7 +70,12 @@ public DocumentPicker setTitle(String title)
*/
public DocumentPicker waitForName(String name)
{
getDriver().waitUntilCondition(webDriver -> name.equals(getName()));
try {
getDriver().waitUntilCondition(webDriver -> name.equals(getName()));
} catch (TimeoutException e) {
throw new WebDriverException(String.format("Expecting name: [%s] and obtained name [%s]", name, getName()),
e);
}
return this;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment