<selenium-server.version>3.4.0</selenium-server.version>
<fluentlenium.version>3.2.0</fluentlenium.version>
<fluentlenium.festassert.version>0.13.2</fluentlenium.festassert.version>
- <seleniumHost></seleniumHost>
- <seleniumPort></seleniumPort>
+
<browserPath></browserPath>
</properties>
<maxWaitTimeInMs>${maxWaitTimeInMs}</maxWaitTimeInMs>
<seleniumHost>${seleniumHost}</seleniumHost>
<seleniumPort>${seleniumPort}</seleniumPort>
+ <seleniumRemote>${seleniumRemote}</seleniumRemote>
<container.propertiesPortFilePath>${container.propertiesPortFilePath}</container.propertiesPortFilePath>
<container.http.port>${container.http.port}</container.http.port>
</systemPropertyVariables>
</properties>
</profile>
+
+ <profile>
+ <id>seleniumHost</id>
+ <activation>
+ <property>
+ <name>!seleniumHost</name>
+ </property>
+ </activation>
+ <properties>
+ <seleniumHost>localhost</seleniumHost>
+ </properties>
+ </profile>
+ <profile>
+ <id>seleniumPort</id>
+ <activation>
+ <property>
+ <name>!seleniumPort</name>
+ </property>
+ </activation>
+ <properties>
+ <seleniumPort></seleniumPort>
+ </properties>
+ </profile>
+ <profile>
+ <id>seleniumRemote</id>
+ <activation>
+ <property>
+ <name>!seleniumRemote</name>
+ </property>
+ </activation>
+ <properties>
+ <seleniumRemote>false</seleniumRemote>
+ </properties>
+ </profile>
+
<profile>
<id>htmlunit</id>
<activation>
public String browser = System.getProperty( "browser" );
public String baseUrl =
- "http://localhost:" + System.getProperty( "tomcat.maven.http.port" ) + "/archiva/index.html?request_lang=en";
+ "http://localhost:" + System.getProperty( "container.http.port" ) + "/archiva/index.html?request_lang=en";
public int maxWaitTimeInMs = Integer.getInteger( "maxWaitTimeInMs" );
public int seleniumPort = Integer.getInteger( "seleniumPort", 4444 );
- public boolean remoteSelenium = Boolean.parseBoolean( System.getProperty( "remoteSelenium", "false" ) );
+ public boolean remoteSelenium = Boolean.parseBoolean( System.getProperty( "seleniumRemote", "false" ) );
WebDriver webDriver = null;
}
public static WebDriver newWebDriver(String seleniumBrowser, String seleniumHost, int seleniumPort, boolean seleniumRemote) {
+ log.info("WebDriver {}, {}, {}, {}", seleniumBrowser, seleniumHost, seleniumPort, seleniumRemote);
+ if (seleniumRemote && StringUtils.isEmpty( seleniumHost )) {
+ throw new IllegalArgumentException( "seleniumHost must be set, when seleniumRemote=true" );
+ }
try {
if ( StringUtils.contains(seleniumBrowser, "chrome")) {