Robot Framework:如何使用ascii对字符串进行编码?

时间:2016-03-22 10:58:00

标签: python selenium selenium-webdriver robotframework

我有一个关键字:

Verify Payment Method Field
Element Text Should Be    ${paymentMethodValueField}     PDF-lasku sähköpostiin

这是日志:

Step 3 Fields verification :: OK: Display Customer Information fie... | FAIL |
The text of element '//div/span' should have been 'PDF-lasku s?hk?postiin' but in fact it was 'PDF-lasku s?hk?postiin'.

我需要写类似的东西,但我不知道如何:

 PDF-lasku s[ascii symbol]hk[ascii symbol]postiin

有人能帮助我吗?

1 个答案:

答案 0 :(得分:1)

我可能会将整个事物转换成一种或另一种格式,然后进行评估?或者ASCII字符位于字符串的某些部分是否重要?如果没有,你只想验证返回的内容是否符合预期,我可能会使用Encode String to Bytes来简化,如果ASCII很重要,甚至编码/解码关键字也可以满足您的需求。

http://robotframework.org/robotframework/latest/libraries/String.html#Encode%20String%20To%20Bytes

通过使用上述内容,您可以将其设置为忽略无法转换的字符或将其替换为您提供的已知字符。只需先获取文本,然后执行您想要的任何操作并进行评估。

如果ASCII位置很重要,解码/编码的替代方案是:

http://robotframework.org/robotframework/latest/libraries/BuiltIn.html#Convert%20To%20Bytes