File tree 1 file changed +5
-4
lines changed
src/test/robotframework/participant/creation
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,13 @@ Force Tags participant misc
10
10
Name and url should be stripped from leading and trailing spaces
11
11
[Documentation] Verify removing of leading and trailing spaces from name and url
12
12
Input Text id=name ${SPACE * 2 } f${SPACE * 2 }
13
- # Testing of the url field is disabled because it causes NPE:
14
- # https://github.com/MarkusBernhardt/robotframework-selenium2library-java/issues/92
15
- # Input Text id=url ${SPACE * 2}url${SPACE * 2}
13
+ Input Text id=url ${SPACE * 2 } url${SPACE * 2 }
16
14
Submit Form id=add-participant-form
17
15
Textfield Value Should Be id=name f
18
- # Textfield Value Should Be id=url url
16
+ # We can't use "Textfield Value Should Be" because it causes NPE:
17
+ # https://github.com/MarkusBernhardt/robotframework-selenium2library-java/issues/92
18
+ ${value } = Get Value id=url
19
+ Should Be Equal ${value } url
19
20
20
21
*** Keywords ***
21
22
Before Test Suite
You can’t perform that action at this time.
0 commit comments