How to do some infinite task with Robot Framework?

这一生的挚爱 提交于 2019-12-04 16:37:20

You could put it inside a for loop. It is not infinite but if you put large enough value it is close enough for practical purposes. This will create a huge log file.

testcase1
    :FOR    ${index}    IN RANGE    999999
    \    Open Connection    ${TEST}
    \    Rest of code

http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#for-loops

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!