Skip to content

Commit 73b967d

Browse files
committed
another test fix for grid
1 parent 37a49ce commit 73b967d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/server/test/org/openqa/grid/e2e/node/NodeTimeOutTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static void setup() throws Exception {
6262
node = GridTestHelper.getRemoteWithoutCapabilities(hub.getUrl(), GridRole.NODE);
6363
node.addBrowser(GridTestHelper.getSelenium1FirefoxCapability(), 1);
6464
node.addBrowser(GridTestHelper.getDefaultBrowserCapability(), 1);
65-
node.setTimeout(5000, 2000);
65+
node.setTimeout(1, 100);
6666
node.setRemoteServer(new SeleniumServer(node.getConfiguration()));
6767
node.startRemoteServer();
6868
node.sendRegistrationRequest();
@@ -76,7 +76,7 @@ public void webDriverTimesOut() throws InterruptedException, MalformedURLExcepti
7676
DesiredCapabilities caps = GridTestHelper.getDefaultBrowserCapability();
7777
WebDriver driver = new RemoteWebDriver(new URL(hub.getUrl() + "/wd/hub"), caps);
7878
driver.get(url);
79-
assertEquals(driver.getTitle(), "Grid overview");
79+
assertEquals(driver.getTitle(), "Grid Console");
8080
wait.until(new Function<Object, Integer>() {
8181
@Override
8282
public Integer apply(Object input) {

0 commit comments

Comments
 (0)