Class QuarantinedTestsPage
- java.lang.Object
-
- com.atlassian.bamboo.pageobjects.pages.AbstractBambooPage
-
- com.atlassian.bamboo.pageobjects.pages.plan.QuarantinedTestsPage
-
- All Implemented Interfaces:
com.atlassian.pageobjects.Page
public class QuarantinedTestsPage extends AbstractBambooPage
A page containing a table of all quarantined tests for a build plan.
-
-
Field Summary
-
Fields inherited from class com.atlassian.bamboo.pageobjects.pages.AbstractBambooPage
driver, elementFinder, pageBinder, poller, testedProduct, timeouts
-
-
Constructor Summary
Constructors Constructor Description QuarantinedTestsPage(PlanKey planKey)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @NotNull Optional<QuarantinedTestRow>
getQuarantinedTest(@NotNull String testClassName, @NotNull String testMethodName)
@NotNull List<QuarantinedTestRow>
getQuarantinedTests()
@NotNull List<QuarantinedTestRow>
getQuarantinedTests(boolean shouldBePresent)
String
getUrl()
com.atlassian.pageobjects.elements.PageElement
indicator()
This must return an element whose presence indicates that we're on given page.-
Methods inherited from class com.atlassian.bamboo.pageobjects.pages.AbstractBambooPage
click, doWait, ensureIndicatorPresent, getFooter, getHeader, getTimeouts, isAdmin, isLoggedIn, isPageLoaded, sendEscapeKey, waitUntilElementIsLocated, waitUntilElementIsNotLocated, waitUntilElementIsNotVisible, waitUntilElementIsVisible
-
-
-
-
Constructor Detail
-
QuarantinedTestsPage
public QuarantinedTestsPage(PlanKey planKey)
-
-
Method Detail
-
indicator
public com.atlassian.pageobjects.elements.PageElement indicator()
Description copied from class:AbstractBambooPage
This must return an element whose presence indicates that we're on given page.- Specified by:
indicator
in classAbstractBambooPage
- Returns:
- element uniquely identifying given page
-
getUrl
public String getUrl()
-
getQuarantinedTests
@NotNull public @NotNull List<QuarantinedTestRow> getQuarantinedTests()
-
getQuarantinedTests
@NotNull public @NotNull List<QuarantinedTestRow> getQuarantinedTests(boolean shouldBePresent)
-
getQuarantinedTest
@NotNull public @NotNull Optional<QuarantinedTestRow> getQuarantinedTest(@NotNull @NotNull String testClassName, @NotNull @NotNull String testMethodName)
-
-