File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
src/test/robotframework/participant/creation Expand file tree Collapse file tree 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
1010Name and url should be stripped from leading and trailing spaces
1111 [Documentation] Verify removing of leading and trailing spaces from name and url
1212 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 }
1614 Submit Form id=add-participant-form
1715 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
1920
2021*** Keywords ***
2122Before Test Suite
You can’t perform that action at this time.
0 commit comments