Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lprimak committed Jan 26, 2025
1 parent b2197e0 commit 9509323
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public void should_start_selenium_server_with_serverArgs_node() throws Exception

fire(new StartSeleniumServer(browser, new MutableCapabilities(), getUrl(5566), seleniumServerArgs));

verifyLogContainsRegex(".*NodeServer.execute.*Started Selenium node.*");
verifyLogContainsRegex(".*NodeServer.*execute.*Started Selenium node.*");
}

@Test
Expand All @@ -43,7 +43,7 @@ public void should_start_selenium_server_with_no_serverArgs() throws Exception {

fire(new StartSeleniumServer(browser, new MutableCapabilities(), getUrl(5577), null));

verifyLogContainsRegex(".*Standalone.execute.*Started Selenium Standalone.*");
verifyLogContainsRegex(".*Standalone.*execute.*Started Selenium Standalone.*");
}

@Test
Expand All @@ -55,7 +55,7 @@ public void should_start_selenium_server_as_hub() throws Exception {

fire(new StartSeleniumServer(browser, new MutableCapabilities(), getUrl(5588), seleniumServerArgs));

verifyLogContainsRegex(".*Hub.execute.*Started Selenium Hub.*");
verifyLogContainsRegex(".*Hub.*execute.*Started Selenium Hub.*");
}

private URL getUrl(int port) throws MalformedURLException {
Expand Down

0 comments on commit 9509323

Please sign in to comment.