Skip to content

Commit e79793d

Browse files
committed
participant/creation/misc.robot: add workaround for inputs of url type.
Should be in 6905052 commit. No functional changes.
1 parent fa744ee commit e79793d

File tree

1 file changed

+5
-4
lines changed
  • src/test/robotframework/participant/creation

1 file changed

+5
-4
lines changed

src/test/robotframework/participant/creation/misc.robot

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ Force Tags participant misc
1010
Name 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 ***
2122
Before Test Suite

0 commit comments

Comments
 (0)