try to wait a bit for ajax to feed topbar before test.

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1490843 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
skygo 2013-06-07 21:39:44 +00:00
parent a40ff0c3cb
commit 0e5d8db0b7
1 changed files with 5 additions and 1 deletions

View File

@ -35,6 +35,7 @@ import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
import java.util.concurrent.TimeUnit;
import org.apache.commons.io.FileUtils;
import org.fluentlenium.core.Fluent;
import org.junit.Before;
@ -82,7 +83,10 @@ public class WebDriverTest
int tomcatPort = Integer.parseInt( tomcatPortProperties.getProperty( "tomcat.maven.http.port" ) );
goTo( "http://localhost:" + tomcatPort + "/archiva/index.html?request_lang=en" );
// wait until topbar-menu-container is feeded
await().atMost(5, TimeUnit.SECONDS).until("#topbar-menu").isPresent();
FluentList<FluentWebElement> elements = find( "#create-admin-link-a" );
if ( !elements.isEmpty() && elements.get( 0 ).isDisplayed() )