mirror of
https://github.com/apache/archiva.git
synced 2025-02-21 01:15:08 +00:00
Fixing window size issues with selenium driver
This commit is contained in:
parent
8b3de94f77
commit
77c375434f
@ -87,8 +87,8 @@ public void open()
|
||||
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 void initializeArchiva( String baseUrl, String browser, int maxWaitTimeIn
|
||||
{
|
||||
|
||||
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…
x
Reference in New Issue
Block a user