Robot Framework中将type为“unicode”的字符串转换为‘str’

时间:2024-04-09 15:43:15

出现的场景

在eclipse中写入的方法传入的字符串打印的type为‘str’

Robot Framework中将type为“unicode”的字符串转换为‘str’


将该方法引入到robotframework中时,传入相同的参数时,打印的type为‘unicode’
Robot Framework中将type为“unicode”的字符串转换为‘str’

Robot Framework中将type为“unicode”的字符串转换为‘str’


Robot Framework中将type为“unicode”的字符串转换为‘str’




上面情况产生的原因"Robot Framework functions accept arguments default unicode type"


解决方案如下:



${bar}    Evaluate    str('accountId=2120170808173259001&name=刘')            
${md5}    Md Five Encode    ${bar}           

Robot Framework中将type为“unicode”的字符串转换为‘str’



Robot Framework中将type为“unicode”的字符串转换为‘str’