python – RobotFramework中两个变量的总和

python – RobotFramework中两个变量的总和,第1张

概述我有两个变量: ${calculatedTotalPrice} = 42,42${productPrice1} = 43,15 我执行了 ${calculatedTotalPrice} Evaluate ${calculatedTotalPrice}+${productPrice1} 我有 42,85,15 我该如何解决? 默认情况下,变量是Robot中的字符串. 因此,您的前两个语句 我有两个变量:
${calculatedTotalPrice} = 42,42${productPrice1} = 43,15

我执行了

${calculatedTotalPrice}     Evaluate ${calculatedTotalPrice}+${productPrice1}

我有

42,85,15

我该如何解决?

解决方法 默认情况下,变量是Robot中的字符串.
因此,您的前两个语句是将“xx,yy”等字符串分配给您的vars.
然后“评估”只是像Python那样执行你的语句.
因此,使用逗号添加两个字符串将生成一个列表:
$python>>> 1,2+3,4(1,5,4)

所以你应该使用${}和使用number variables. (点)用于分隔符,如下例所示:

*** Test Cases ***sum of variables  ${calculatedTotalPrice} =    set variable    ${42.42}  ${productPrice1} =    set variable    ${43.15}  ${calculatedTotalPrice} =    Evaluate    ${calculatedTotalPrice}+${productPrice1}  log to console  ${calculatedTotalPrice}

这将产生:
$pybot test.robot

==============================================================================Test==============================================================================sum of variables                                                      ...85.57==============================================================================
总结

以上是内存溢出为你收集整理的python – RobotFramework中两个变量的总和全部内容,希望文章能够帮你解决python – RobotFramework中两个变量的总和所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1206632.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存