我正在尝试使用路径中的一些变量转到url。代码示例如下:
go to http://localhost:5000/api/v1/${ind_id_r}
当我尝试运行它时,它实际上会尝试按原样打开网址,即“http://localhost:5000/api/v1/ $ {ind_id_r}”而不是替换网址中的变量$ {ind_id_r}。
有没有办法让Robot Framework替换变量值并导航到正确的url?
提前致谢
答案 0 :(得分:0)
嗯,解决方法是使用Catenate函数并将值作为url传递。
${Req} Catenate SEPARATOR= http://localhost:5000/ ${ind_id_r}
go to ${Req}