Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[JENKINS-30304] Removing workaround #64

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 2 additions & 7 deletions src/test/java/plugins/AbstractAnalysisTest.java
Expand Up @@ -170,13 +170,8 @@ private void verifyTrendGraphOverview(final FreeStyleJob job, final AnalysisActi

private void verifyTrendGraphDetails(final FreeStyleJob job, final AnalysisAction action) {
List<WebElement> graphLinks = job.all(By.linkText("Enlarge"));
// We need to skip analysis collector here since the graph link is overlapped with footer.
// see also JENKINS-30304.
// TODO: enable if JENKINS-30304 has been fixed
if (graphLinks.size() == 1) {
graphLinks.get(0).click();
assertThatProjectPageTrendIsCorrect(job, action, "../../");
}
graphLinks.get(graphLinks.size() - 1).click();
assertThatProjectPageTrendIsCorrect(job, action, "../../");
}

private void assertThatProjectPageTrendIsCorrect(final FreeStyleJob job, final AnalysisAction action, final String prefix) {
Expand Down