mirror of https://github.com/apache/archiva.git
Fixing window size issues with selenium driver
This commit is contained in:
parent
8b3de94f77
commit
77c375434f
|
@ -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")));
|
||||
|
|
|
@ -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…
Reference in New Issue