RobotFramework 将分钟转换为小时

RobotFramework Convert minutes to hours

Robot框架有内置库关键字可以将分钟转换为小时吗?如果没有,我该怎么做?

例如:5 分钟 = 0.0833333 小时

我是 Robot 的新手,感谢任何帮助

您可以使用 evaluate。例如:

*** Test cases ***
| Example of converting minutes to hours
| | ${minutes}= | Set variable | 5
| | ${hours}= | Evaluate | ${minutes}/60.00
| | log to console | \nHours: ${hours}