diff --git a/core/src/test/groovy/net/thucydides/core/webdriver/WhenMonitoringWebDriverTimeoutOptions.groovy b/core/src/test/groovy/net/thucydides/core/webdriver/WhenMonitoringWebDriverTimeoutOptions.groovy index 8f33170121..51b1630fa4 100644 --- a/core/src/test/groovy/net/thucydides/core/webdriver/WhenMonitoringWebDriverTimeoutOptions.groovy +++ b/core/src/test/groovy/net/thucydides/core/webdriver/WhenMonitoringWebDriverTimeoutOptions.groovy @@ -18,9 +18,9 @@ class WhenMonitoringWebDriverTimeoutOptions extends Specification { given: def driver = new WebDriverFacade(HtmlUnitDriver.class, webDriverFactory) when: - driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS) + driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS) then: - driver.implicitTimeoutValue == 10 + driver.implicitTimeoutValue == 30 driver.implicitTimeoutUnit == TimeUnit.SECONDS } }