increase timeout

This commit is contained in:
Lee moon soo 2017-01-30 06:56:28 +09:00
parent 940a8b7d36
commit 87432d5b88

View file

@ -122,7 +122,7 @@ public class WebDriverManager {
while (System.currentTimeMillis() - start < 60 * 1000) {
// wait for page load
try {
(new WebDriverWait(driver, 5)).until(new ExpectedCondition<Boolean>() {
(new WebDriverWait(driver, 30)).until(new ExpectedCondition<Boolean>() {
@Override
public Boolean apply(WebDriver d) {
return d.findElement(By.xpath("//i[@tooltip='WebSocket Connected']"))