Browse Source

Fixing window size issues with selenium driver

pull/46/head
Martin Stockhammer 6 years ago
parent
commit
77c375434f

+ 1
- 2
archiva-modules/archiva-web/archiva-webapp-test/src/test/java/org/apache/archiva/web/test/parent/AbstractSeleniumTest.java View File

@@ -87,8 +87,8 @@ public abstract class AbstractSeleniumTest
p.load( this.getClass().getClassLoader().getResourceAsStream( "test.properties" ) );

baseUrl = WebdriverUtility.getBaseUrl()+"/index.html?request_lang=en";

open( baseUrl, browser, seleniumHost, seleniumPort, maxWaitTimeInMs, remoteSelenium );
getWebDriver().manage().window().maximize();
assertAdminCreated();
}

@@ -149,7 +149,6 @@ public abstract class AbstractSeleniumTest
{

open( baseUrl, browser, seleniumHost, seleniumPort, maxWaitTimeInMs, remoteSelenium);

loadPage(baseUrl, 30);
WebDriverWait wait = new WebDriverWait(getWebDriver(),30);
wait.until(ExpectedConditions.presenceOfElementLocated(By.id("topbar-menu")));

+ 1
- 1
src/ci/scripts/container_webtest.sh View File

@@ -61,7 +61,7 @@ function stop_instance() {

function start_instance() {
echo "Starting container ${INSTANCE_NAME}"
docker run -d --net="${NETWORK_TYPE}" -p "${PORT_MAPPING}" --name "${INSTANCE_NAME}" "${TAG}"
docker run -d -e "SCREEN_WIDTH=${SCREEN_WIDTH}" -e "SCREEN_HEIGHT=${SCREEN_HEIGHT}" --net="${NETWORK_TYPE}" -p "${PORT_MAPPING}" --name "${INSTANCE_NAME}" "${TAG}"
}

function print_usage() {

Loading…
Cancel
Save