We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 975413e commit c49ec16Copy full SHA for c49ec16
src/test/robotframework/account/registration/logic.robot
@@ -19,8 +19,9 @@ After account creation an e-mail with activation link should be send
19
${response}= Post Request mailserver /__admin/requests/find data=${searchQuery}
20
Log ${response.json}
21
Length Should Be ${response.json['requests']} 1
22
+ ${body}= Set Variable ${response.json['requests'][0]['body']}
23
${linkRegexp}= Set Variable ${SITE_URL}/account/activate\\?key=[0-9a-z]{10}
- ${links}= Get Regexp Matches ${response.json['requests'][0]['body']} ${linkRegexp}
24
+ ${links}= Get Regexp Matches ${body} ${linkRegexp}
25
Length Should Be ${links} 1
26
27
*** Keywords ***
0 commit comments