Package | Description |
---|---|
com.atlassian.jira.functest.framework | |
com.atlassian.jira.functest.framework.assertions | |
com.atlassian.jira.functest.framework.locator |
Modifier and Type | Method and Description |
---|---|
Long |
Dashboard.getDashboardPageId(String dashboardPageName,
Locator pagesLocator)
Find the id of the dashboard page with the given name from a table to dashboard pages.
|
Modifier and Type | Method and Description |
---|---|
void |
TextAssertions.assertAtLeastOneTextPresent(Locator locator,
String option1,
String... options)
Asserts that at least one of the provided text strings is present in the locator.
|
void |
TextAssertionsImpl.assertAtLeastOneTextPresent(Locator locator,
String option1,
String... moreOptions) |
void |
DashboardAssertions.assertColumns(List<String> colHeaders,
Locator dashboardsLocator)
Assert that the columns exist
|
void |
DashboardAssertionsImpl.assertColumns(List<String> colHeaders,
Locator dashboardsLocator) |
void |
IssueNavigatorAssertions.assertIssueNavigatorDisplaying(Locator locator,
String from,
String to,
String of)
Assert that the issue navigator is displaying with bug from, to and totalNumber (of)
|
void |
IssueNavigatorAssertionsImpl.assertIssueNavigatorDisplaying(Locator locator,
String from,
String to,
String of) |
void |
Assertions.assertNodeDoesNotExist(Locator locator)
Asserts that a given node does not exists
|
void |
AssertionsImpl.assertNodeDoesNotExist(Locator locator) |
void |
Assertions.assertNodeDoesNotHaveText(Locator locator,
String textToTest)
Asserts that a given node exists but does not contain the given text
|
void |
AssertionsImpl.assertNodeDoesNotHaveText(Locator locator,
String textToTest) |
void |
Assertions.assertNodeEquals(Locator locator,
String textToTest)
Asserts that a given node exactly equals the given text
|
void |
AssertionsImpl.assertNodeEquals(Locator locator,
String textToTest) |
void |
Assertions.assertNodeExists(Locator locator)
Asserts that a given node exists
|
void |
AssertionsImpl.assertNodeExists(Locator locator) |
void |
Assertions.assertNodeHasText(Locator locator,
String textToTest)
Asserts that a given node contains the given text
|
void |
AssertionsImpl.assertNodeHasText(Locator locator,
String textToTest) |
void |
TextAssertions.assertRegexMatch(Locator locator,
String regexPattern)
Synonym for
TextAssertions.assertRegexMatch(String, String) that calls getText() on the provided
locator. |
void |
TextAssertionsImpl.assertRegexMatch(Locator locator,
String regexPattern) |
void |
TextAssertions.assertRegexNoMatch(Locator locator,
String regexPattern)
Synonym for
TextAssertions.assertRegexNoMatch(String, String) that calls getText() on the provided
locator. |
void |
TextAssertionsImpl.assertRegexNoMatch(Locator locator,
String regexPattern) |
void |
TextAssertions.assertTextNotPresent(Locator locator,
String expectedText)
Synonym for
TextAssertions.assertTextNotPresent(String, String) that calls getText() on the provided
locator. |
void |
TextAssertionsImpl.assertTextNotPresent(Locator locator,
String expectedText) |
void |
TextAssertions.assertTextPresent(Locator locator,
String expectedText)
Synonym for
TextAssertions.assertTextPresent(String, String) that calls getText() on the provided
locator. |
void |
TextAssertionsImpl.assertTextPresent(Locator locator,
String expectedText) |
void |
TextAssertions.assertTextPresentNumOccurences(Locator locator,
String expectedText,
int numOccurences)
Synonym for
TextAssertions.assertTextPresentNumOccurences(String, String, int) that calls getText() on the provided
locator. |
void |
TextAssertionsImpl.assertTextPresentNumOccurences(Locator locator,
String expectedText,
int numOccurences) |
void |
TextAssertions.assertTextSequence(Locator locator,
String[] expectedTextSequence)
Synonym for
TextAssertions.assertTextSequence(String, String[]) that calls getText() on the provided
locator. |
void |
TextAssertionsImpl.assertTextSequence(Locator locator,
String[] expectedTextSequence) |
void |
TextAssertions.assertTextSequence(Locator locator,
String expected1,
String... expected2)
Synonym for
TextAssertions.assertTextSequence(String, String[]) that calls getText() on the provided
locator. |
void |
TextAssertionsImpl.assertTextSequence(Locator locator,
String expected1,
String... expected2) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractLocator
A base class to derive
Locator s from |
class |
AggregateLocator
AggregateLocator will "aggregate" together the results of the provided
Locator s |
class |
CssLocator
A CSS locator that uses JSOUP {@link org.jsoup.nodes.Document) under the covers
|
class |
IdLocator
|
class |
NodeLocator
|
class |
TableCellLocator
Locator to run test assertions on a single table cell.
|
class |
TableLocator
This will locate HTML tables by 'tableId' and return the
WebTable ready for more
assertions. |
class |
WebPageLocator
This locator returns the whole of the web page as text.
|
class |
XPathLocator
|
Modifier and Type | Method and Description |
---|---|
protected static boolean |
AbstractLocator.containsNode(Locator locator,
Node node) |
Constructor and Description |
---|
AggregateLocator(Locator[] locators)
Aggregates together the values of the specified array of
Locator s |
AggregateLocator(Locator firstLocator,
Locator secondLocator)
Creates an agggregate of the firstLocator and the secondLocator
|
LocatorIterator(Locator locator) |
Copyright © 2002-2021 Atlassian. All Rights Reserved.