java.lang.Object | ||
↳ | com.atlassian.jira.pageobjects.dialogs.JiraDialog | |
↳ | com.atlassian.jira.pageobjects.dialogs.FormDialog |
![]() |
Represents a JIRA from dialog. These type of Dialogs basically slurp HTML from the server and display it on the client side. Input is submitted to a back end action. This action will either indicate that the action was a success or will return HTML with errors in it for display to the user.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | FORM_SUBMITTING_CLASS |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
form | |||||||||||
header | |||||||||||
loading | |||||||||||
messages |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Close the dialog by clicking on the kindly ever-present cancel button.
| |||||||||||
Closes the dialog by hitting ESC
| |||||||||||
Return a list of the form errors currently on the dialog.
| |||||||||||
Return a mapping of the errors currently on the form.
| |||||||||||
Return true iff the dialog has error messages contained in its associated form.
| |||||||||||
Called when the dialog is first displayed.
| |||||||||||
Waits for at least one error to be visible
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Do a submit on the passed the form element with the passed name.
| |||||||||||
Do a submit on the passed element found using the passed locator.
| |||||||||||
Do a submit on the passed element.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Close the dialog by clicking on the kindly ever-present cancel button.
Closes the dialog by hitting ESC
Return a list of the form errors currently on the dialog.
Return a mapping of the errors currently on the form. The mapping if from parameterName -> error.
Return true iff the dialog has error messages contained in its associated form.
Called when the dialog is first displayed. Waits util the dialog is ready to work with before exiting.
Do a submit on the passed the form element with the passed name. The method will then wait for the response from the server before returning.
name | the name of the element to submit. |
---|
Do a submit on the passed element found using the passed locator. The method will then wait for the response from the server before returning.
locator | for the element to select. |
---|
Do a submit on the passed element. The method will then wait for the response from the server before returning.
pageElement | the page element to submit. |
---|