This is a list of available tags for Watij Plug-in. This list of tags is also available in the Jameleon GUI. You can get there by selecting the "Functional Points" tab on the lower-left. All tags, including custom tags and other enabled plug-ins' tags, show up in the GUI.
Tag | Short Description |
---|---|
<watij-assert-html-element/> | Gets an HtmlElement on the page and validates its attributes and inner text. |
<watij-assert-text/> | Asserts that that the given text exists or doesn't exist on a page. |
<watij-assert-text-field/> | Gets a text field on the page and validates its attributes. |
<watij-assert-title/> | Asserts that the title is what is expected. |
<watij-back/> | Click the browser's back button. |
<watij-bring-to-front/> | Brings the window defined by childBrowserIndex to the front and makes it active. |
<watij-checkbox/> | Gets a checkbox on the page and stores in the context. |
<watij-click/> | Clicks on a given HtmlElement or an elemented defined by how and what . |
<watij-click-link/> | Gets a link on the page and clicks on it if found. |
<watij-contains-text/> | Looks for the given text on the page. |
<watij-execute-script/> | Click on a given HtmlElement. |
<watij-file-field/> | Gets a file field and stores it in the context for use in another tag or the script. |
<watij-forward/> | Click the browser's forward button. |
<watij-goto/> | Navigates to a given URL. |
<watij-hidden/> | Gets a hidden field and stores it in the context for use in another tag or the script. |
<watij-html-element/> | Gets an HtmlElement on the page and stores in the context. |
<watij-image/> | Gets an image on the page and stores in the context. |
<watij-link/> | Gets a link on the page and stores in the context. |
<watij-radio/> | Gets a radio button on the page and stores in the context. |
<watij-refresh/> | Presses the browser's refresh button. |
<watij-select-list/> | Gets a select list on the page and stores in the context. |
<watij-select-list-option/> | Gets a select list on the page and stores in the context. |
<watij-send-keys/> | Sends keystrokes to the screen. |
<watij-session/> | A Session tag for the Watij plug-in. |
<watij-set-checkbox/> | Gets a checkbox on the page and stores in the context. |
<watij-set-file-field/> | Sets the value of a file field. |
<watij-set-hidden/> | Sets the value of a hidden field. |
<watij-set-radio/> | Gets a radio button on the page and stores it in the context. |
<watij-set-select-list/> | Selects a given option of a select list. |
<watij-set-select-list-option/> | Selects a given option of a select list. |
<watij-set-text-field/> | Sets the value of a text, password, or textarea field. |
<watij-text-field/> | Gets a text, password, or textarea field and stores it in the context for use in another tag or the script. |
<watij-title/> | Gets the title of the page and stores it in the context. |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
exists |
To check that it exists or not. If set to false, then the tag will if the element exists. | true | false | boolean | |
disabled |
To validate the element is enabled set this to false. To validate the element is disalbed set this to true. | false | java.lang.Boolean | ||
id |
The expected id | false | java.lang.String | ||
innerText |
The inner text of the element | false | java.lang.String | ||
name |
The name of the element | false | java.lang.String | ||
style |
The style of the element | false | java.lang.String | ||
text |
The text nested in the element | false | java.lang.String | ||
title |
The title nested in the element | false | java.lang.String | ||
type |
The type of the element | false | java.lang.String | ||
value |
The value of the element | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
text |
The text to check for against the currently active IE. | true | java.lang.String | ||
msg |
The error message to display if the assert fails. | false | java.lang.String | ||
failIfFound |
Fail if the given text is found. | false | false | java.lang.Boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
exists |
To check that it exists or not. If set to false, then the tag will if the element exists. | true | false | boolean | |
disabled |
To validate the element is enabled set this to false. To validate the element is disalbed set this to true. | false | java.lang.Boolean | ||
id |
The expected id | false | java.lang.String | ||
innerText |
The inner text of the element | false | java.lang.String | ||
name |
The name of the element | false | java.lang.String | ||
style |
The style of the element | false | java.lang.String | ||
text |
The text nested in the element | false | java.lang.String | ||
title |
The title nested in the element | false | java.lang.String | ||
type |
The type of the element | false | java.lang.String | ||
value |
The value of the element | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
title |
The expected title of the current page. | false | java.lang.String | ||
msg |
The message to display if the tag fails. | false | java.lang.String | ||
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
childBrowserIndex |
The index number of the child browser to activate where the 1st child is | false | java.lang.Integer | ||
parentBrowser |
Bring the original browser back into focus. | false | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
value |
The value of the form field. This is for form fields that all have the same name, but different values. | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | false | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | false | java.lang.String | ||
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
element |
The HtmlElement to click. | false | watij.elements.HtmlElement | ||
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
text |
The text to check for against the currently active IE. | false | java.lang.String | ||
contextVar |
The context variable to store the title in | watijTextPresent | true | java.lang.String | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
script |
The JavaScript to execute. | true | java.lang.String | ||
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
url |
The url to navigate to. | true | java.lang.String | ||
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
value |
The value of the form field. This is for form fields that all have the same name, but different values. | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
keys |
The keys to send to the screen | false | java.lang.String | ||
title |
The title of the window to activate before sending the keys | false | java.lang.String | ||
blocking |
To block while the keys are being sent or not. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
baseUrl | baseUrl |
| false | java.lang.String | |
beginAt | beginAt |
| false | java.lang.String | |
application |
The name of the application being run according to the *-TestCaseTag.properties file | false | java.lang.String | ||
organization |
The organization (affiliate or company name) this application will be tested against. | false | java.lang.String | ||
postcondition |
| false | boolean | ||
sessionDelay |
Sets the tag to delay x milliseconds before anything else is executed. | 0 | false | long | |
beginSession |
Starts the applicattion and gets it to the state defined in the $testEnviroment-Applications.properties.
DEFAULTS to | false | boolean |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
setOrClear |
Selects/clears the checkbox | true | false | boolean | |
value |
The value of the form field. This is for form fields that all have the same name, but different values. | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
value |
The text to enter into the file field | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
value |
The text to enter into the hidden field | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
value |
The value of the form field. This is for form fields that all have the same name, but different values. | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
select |
Select the option with the matching displayed text | false | java.lang.String | ||
selectValue |
Select the option with the matching value attribute's value | false | java.lang.String | ||
clearSelection |
Clear the optioh selection. If this is true and select or selectValue are set, then the list will be cleared first, and the new option will be selected. This option is for multi select boxes only. | false | false | boolean | |
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
select |
Select the option with the matching displayed text | true | false | boolean | |
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
value |
The text to enter into the text field | false | java.lang.String | ||
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
how |
The way to find the HTML element. See {@link watij.finders.SymbolFactory SymbolFactory} for possible values (i.e. name, id, xpath). | true | java.lang.String | ||
what |
The identifier of the symbol. For example, if symbol is set to | true | java.lang.String | ||
contextVar |
The context variable to store the element in. | htmlElement | true | java.lang.String | |
failOnNotExists |
Fail if the field doesn't exist. | true | false | boolean | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |
Take a look at this tag's API docs and source code
for more information.
Attribute Name | Context Name | Description | Default | Required | Type |
---|---|---|---|---|---|
contextVar |
The context variable to store the title in | watijTitle | true | java.lang.String | |
functionId |
The id of this function. This is used in the macro as a short description of the function | true | java.lang.String | ||
breakPoint |
Tells the GUI to stop at this functional point | false | boolean | ||
precondition |
Specifies this is a precondition | false | boolean | ||
postcondition |
Specifies this is a postcondition and will therefore get executed even if a previous functional point or session tag failed. | false | boolean | ||
expectFailure |
Specifies a failure is expected. | false | boolean | ||
expectException |
Specifies an exception is expected. | false | boolean | ||
functionDelay |
The delay time to use at the end of each functional point | -1 | false | long |