Skip to content
Snippets Groups Projects
Commit d51dc8af authored by srosse's avatar srosse
Browse files

no-jira: hardened Selenium for Firefox, remove unused back to top

parent 5bb95f67
No related branches found
No related tags found
No related merge requests found
...@@ -365,6 +365,11 @@ mvn clean verify -DskipTests=true -Dwith-mysql -Ptomcat ...@@ -365,6 +365,11 @@ mvn clean verify -DskipTests=true -Dwith-mysql -Ptomcat
mvn clean verify -DskipTests=true -Dwith-postgresql -Dtest.env.db.postgresql.pass=serial -Ptomcat mvn clean verify -DskipTests=true -Dwith-postgresql -Dtest.env.db.postgresql.pass=serial -Ptomcat
``` ```
Or with Firefox
```bash
mvn clean verify -DskipTests=true -Dwith-postgresql -Dtest.env.webdriver.browser=firefox -Dtest.env.db.postgresql.pass=serial -Ptomcat
```
#### Execute a single selenium functional integration test in Eclipse #### Execute a single selenium functional integration test in Eclipse
......
...@@ -79,7 +79,6 @@ public class NavigationPage { ...@@ -79,7 +79,6 @@ public class NavigationPage {
public AuthoringEnvPage openAuthoringEnvironment() { public AuthoringEnvPage openAuthoringEnvironment() {
navigate(authoringEnvTabBy); navigate(authoringEnvTabBy);
backToTheTop();
OOGraphene.closeBlueMessageWindow(browser); OOGraphene.closeBlueMessageWindow(browser);
return new AuthoringEnvPage(browser); return new AuthoringEnvPage(browser);
} }
...@@ -160,23 +159,7 @@ public class NavigationPage { ...@@ -160,23 +159,7 @@ public class NavigationPage {
browser.findElement(openMoreBy).click(); browser.findElement(openMoreBy).click();
//wait the small transition //wait the small transition
By openedMoreMenuby = By.cssSelector("#o_navbar_more ul.dropdown-menu.dropdown-menu-right"); By openedMoreMenuby = By.cssSelector("#o_navbar_more ul.dropdown-menu.dropdown-menu-right");
OOGraphene.waitElement(openedMoreMenuby, 5, browser); OOGraphene.waitElement(openedMoreMenuby, browser);
}
public NavigationPage backToTheTop() {
List<WebElement> backList = browser.findElements(toolbarBackBy);
int count = 0;
while(backList.size() > 0) {
backList.get(count).click();
OOGraphene.waitBusy(browser);
backList = browser.findElements(toolbarBackBy);
Assert.assertTrue(count++ < 3);
}
OOGraphene.closeBlueMessageWindow(browser);
return this;
} }
public NavigationPage closeTab() { public NavigationPage closeTab() {
......
...@@ -63,6 +63,7 @@ public class OOGraphene { ...@@ -63,6 +63,7 @@ public class OOGraphene {
private static final Duration polling = Duration.ofMillis(100); private static final Duration polling = Duration.ofMillis(100);
private static final Duration poolingSlow = Duration.ofMillis(200); private static final Duration poolingSlow = Duration.ofMillis(200);
private static final Duration poolingSlower = Duration.ofMillis(400);
private static final Duration timeout = Duration.ofSeconds(5); private static final Duration timeout = Duration.ofSeconds(5);
private static final By closeBlueBoxButtonBy = By.cssSelector("div.o_alert_info div.o_sel_info_message a.o_alert_close.o_sel_info_close"); private static final By closeBlueBoxButtonBy = By.cssSelector("div.o_alert_info div.o_sel_info_message a.o_alert_close.o_sel_info_close");
...@@ -170,6 +171,21 @@ public class OOGraphene { ...@@ -170,6 +171,21 @@ public class OOGraphene {
.until(ExpectedConditions.visibilityOfElementLocated(element)); .until(ExpectedConditions.visibilityOfElementLocated(element));
} }
/**
* Wait until the element is visible. But slowly poll if the
* element exists (every 333ms instead of 100ms)
*
* @param element The selector for the element
* @param timeoutInSeconds The timeout in seconds
* @param browser The web driver
*/
public static void waitElementSlowly(By element, int timeoutInSeconds, WebDriver browser) {
new WebDriverWait(browser, driverTimeout)
.withTimeout(Duration.ofSeconds(timeoutInSeconds))
.pollingEvery(poolingSlower)
.until(ExpectedConditions.visibilityOfElementLocated(element));
}
/** /**
* Wait until the element is visible. * Wait until the element is visible.
* *
...@@ -600,9 +616,14 @@ public class OOGraphene { ...@@ -600,9 +616,14 @@ public class OOGraphene {
} }
} }
/**
* Click the "<" of the bread crumbs and wait.
*
* @param browser The browser
*/
public static final void clickBreadcrumbBack(WebDriver browser) { public static final void clickBreadcrumbBack(WebDriver browser) {
By backBy = By.xpath("//ol[@class='breadcrumb']/li[@class='o_breadcrumb_back']/a[i[contains(@class,'o_icon_back')]]"); By backBy = By.xpath("//ol[@class='breadcrumb']/li[@class='o_breadcrumb_back']/a[i[contains(@class,'o_icon_back')]]");
waitElement(backBy, browser); waitElement(backBy, 10, browser);
try { try {
browser.findElement(backBy).click(); browser.findElement(backBy).click();
} catch (StaleElementReferenceException e) { } catch (StaleElementReferenceException e) {
......
...@@ -53,6 +53,7 @@ public class RollCallInterceptorPage { ...@@ -53,6 +53,7 @@ public class RollCallInterceptorPage {
By startWizardBy = By.cssSelector("div.o_sel_lecture_start_wizard a.o_sel_lecture_start_wizard"); By startWizardBy = By.cssSelector("div.o_sel_lecture_start_wizard a.o_sel_lecture_start_wizard");
browser.findElement(startWizardBy).click(); browser.findElement(startWizardBy).click();
OOGraphene.waitBusy(browser); OOGraphene.waitBusy(browser);
OOGraphene.waitElement(By.className("o_rollcall_wizard"), browser);
return new TeacherRollCallWizardPage(browser); return new TeacherRollCallWizardPage(browser);
} }
......
...@@ -46,6 +46,7 @@ public class TeacherRollCallWizardPage { ...@@ -46,6 +46,7 @@ public class TeacherRollCallWizardPage {
public TeacherRollCallWizardPage setAbsence(String lecture) { public TeacherRollCallWizardPage setAbsence(String lecture) {
By checkBy = By.xpath("//div[contains(@class,'o_rollcall_wizard')]//table//tr[1]/td[count(//div[contains(@class,'o_rollcall_wizard')]//table//tr/th[a[text()='" + lecture + "']]/preceding-sibling::th)+1]/div/label/input"); By checkBy = By.xpath("//div[contains(@class,'o_rollcall_wizard')]//table//tr[1]/td[count(//div[contains(@class,'o_rollcall_wizard')]//table//tr/th[a[text()='" + lecture + "']]/preceding-sibling::th)+1]/div/label/input");
OOGraphene.waitElement(checkBy, browser);
WebElement checkEl = browser.findElement(checkBy); WebElement checkEl = browser.findElement(checkBy);
OOGraphene.check(checkEl, Boolean.TRUE); OOGraphene.check(checkEl, Boolean.TRUE);
OOGraphene.waitBusy(browser); OOGraphene.waitBusy(browser);
......
...@@ -174,7 +174,7 @@ public class BinderPage { ...@@ -174,7 +174,7 @@ public class BinderPage {
browser.findElement(tocBy).click(); browser.findElement(tocBy).click();
OOGraphene.waitBusy(browser); OOGraphene.waitBusy(browser);
By binderPageListBy = By.cssSelector("div.o_portfolio_entries"); By binderPageListBy = By.cssSelector("div.o_portfolio_entries");
OOGraphene.waitElement(binderPageListBy, browser); OOGraphene.waitElementSlowly(binderPageListBy, 10, browser);
return this; return this;
} }
......
...@@ -228,10 +228,7 @@ public class AuthoringEnvPage { ...@@ -228,10 +228,7 @@ public class AuthoringEnvPage {
* @return * @return
*/ */
public CoursePageFragment clickToolbarRootCrumb() { public CoursePageFragment clickToolbarRootCrumb() {
By toolbarBackBy = By.xpath("//div[contains(@class,'o_breadcrumb')]/ol[contains(@class,'breadcrumb')]/li/a[contains(@onclick,'crumb_0')]"); OOGraphene.clickBreadcrumbBack(browser);
OOGraphene.waitingALittleBit();// firefox will click the button without effect
browser.findElement(toolbarBackBy).click();
OOGraphene.waitBusy(browser);
return new CoursePageFragment(browser); return new CoursePageFragment(browser);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment