You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When calling Get Email Body I expect it to return the body of the email as can be seen in the original email source. However, due to the call decode('quoted-printable') I get back a corrupted UUID and parameter. In the included case below, the parameter userIds operator = has been replaced with ! and some of the beginning characters of the UUID have been truncated causing the test to fail.
Simply removing the decode('quoted-printable') causes the userId parameter and UUID to be parsed as expected, and the test to pass successfully. Raising the question what is the reasoning behind decode('quoted-printable')?
What I get back when calling Get Email Body ${latest}
The text was updated successfully, but these errors were encountered:
Cumminsc9
changed the title
decode('quoted-printable') Causes UUIDs in email body to parse incorrectly
decode('quoted-printable') Causes UUIDs in email body to deserialize incorrectly
May 23, 2018
When calling
Get Email Body
I expect it to return the body of the email as can be seen in the original email source. However, due to the calldecode('quoted-printable')
I get back a corrupted UUID and parameter. In the included case below, the parameteruserId
s operator=
has been replaced with!
and some of the beginning characters of the UUID have been truncated causing the test to fail.Simply removing the
decode('quoted-printable')
causes theuserId
parameter and UUID to be parsed as expected, and the test to pass successfully. Raising the question what is the reasoning behinddecode('quoted-printable')
?What I get back when calling
Get Email Body ${latest}
What I expect when calling
Get Email Body ${latest}
The text was updated successfully, but these errors were encountered: