Java tutorial
/*- * [LICENSE] * Taskboard * --- * Copyright (C) 2015 - 2017 Objective Solutions * --- * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * [/LICENSE] */ package objective.taskboard.it; import static org.apache.commons.lang3.StringUtils.join; import static org.junit.Assert.assertEquals; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.concurrent.atomic.AtomicReference; import java.util.stream.Collectors; import org.openqa.selenium.By; import org.openqa.selenium.StaleElementReferenceException; import org.openqa.selenium.TimeoutException; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; public class BoardStepFragment extends AbstractUiFragment { private WebElement boardStepRoot; private String stepName; public BoardStepFragment(WebDriver driver, String stepName, WebElement root) { super(driver); this.stepName = stepName; this.boardStepRoot = root; } public void assertIssueList(String... expectedIssueKeyList) { AtomicReference<String> s = new AtomicReference<>(); try { waitUntil((w) -> { s.set(join(issueList(), "\n")); return s.get().equals(join(expectedIssueKeyList, "\n")); }); } catch (TimeoutException e) { assertEquals(join(expectedIssueKeyList, "\n"), s.get()); } } public void issueCountBadge(int i) { webDriver.findElement(By.cssSelector("[data-step-count-name='" + stepName + "']")); // TODO: investigate why parameter is not used } public void scrollTo(String issueKey) { WebElement issueEl = boardStepRoot.findElement(By.cssSelector("issue-item#" + issueKey)); scrollToElement(issueEl); waitVisibilityOfElement(issueEl); } private List<String> issueList() { try { List<WebElement> findElements = boardStepRoot.findElements(By.cssSelector("paper-material.issue")) .stream().filter(e -> e.isDisplayed()).collect(Collectors.toList()); ArrayList<String> actualIssueKeyList = new ArrayList<String>(); for (WebElement webElement : findElements) actualIssueKeyList.add(webElement.findElement(By.cssSelector(".key.issue-item")) .getAttribute("data-issue-key").trim()); return actualIssueKeyList; } catch (StaleElementReferenceException ex) { return Arrays.asList(); } } }