| # | Result | Name | Parameter | Duration |
|
1 |  | invoke
Open the page with form and JS
Resulting page |
| -> complete url | http://localhost:19090/selftest/form.jsp |
| url | form.jsp |
| 86 |
|
2 |  | setInputField
|
| value | blabla |
| xpath | //form/input[@type='text'][@name='myTextField'] |
| 75 |
|
3 |  | setInputField
|
| value | secret |
| xpath | //form/input[@name='myPasswordField'] |
| 54 |
|
4 |  | setInputField
Resulting page |
| value | Really interesting, isn't it? |
| xpath | //form/textarea[@name='myTextArea'] |
| 34 |
|
5 |  | setCheckbox
|
| checked | true |
| xpath | //form/input[@name='myCheckbox'] |
| 43 |
|
6 |  | setCheckbox
identify checkbox with name and value alcohol |
| checked | true |
| xpath | //form/input[@name='beer'][@value='alcohol'] |
| 76 |
|
7 |  | setCheckbox
identify checkbox with name and value lemon |
| checked | true |
| xpath | //form/input[@name='beer'][@value='lemon'] |
| 58 |
|
8 |  | verifyCheckbox
should not get confused from hidden decoy beer field |
| checked | true |
| name | beer |
| value | lemon |
| 4 |
|
9 |  | setSelectField
Resulting page |
| 129 |
|
10 |  | setSelectField
select value that is available thanks JS since mySelect1 changed |
| 4 |
|
11 |  | clickButton
Resulting page |
| 123 |
|
12 |  | verifyText
Checks the received value from text |
| 2 |
|
13 |  | verifyText
Checks that value echoed with JS has been received too |
| text | myTextFieldEcho: blabla |
| 3 |
|
14 |  | verifyText
Checks the received value from password |
| text | myPasswordField: secret |
| 2 |
|
15 |  | verifyText
Checks that value echoed with JS has been received too |
| text | myPasswordFieldEcho: secret |
| 11 |
|
16 |  | verifyText
Checks the received value from textarea |
| text | myTextArea: Really interesting, isn't it? |
| 2 |
|
17 |  | verifyText
Checks that value echoed with JS has been received too |
| text | myTextAreaEcho: Really interesting, isn't it? |
| 37 |
|
18 |  | verifyText
Checks the received value from checkbox |
| text | myCheckbox: yes, please |
| 3 |
|
19 |  | verifyText
Checks the received value from the valued checkbox |
| 2 |