http://www.cnblogs.com/laoqing/p/7198090.html
在使用Create Http Context关键字创建了http的调用环境后,就可以使用Get关键字来发送一个http协议中最常用的get请求了。
Get 关键字只接受一个url参数,该关键字的API中对url的原始描述是:`url` is the URL relative to the server root。
示例1:使用get请求访问百度主页
Create Http Context host=www.baidu.com:80 scheme=http
GET /
执行结果:
示例2:使用get请求访问RobotFramework主页下的examples
Create Http Context robotframework.org scheme=http
GET /#examples
执行结果:
示例3:使用get请求访问一个带有传入参数的示例
Create Http Context sp0.baidu.com scheme=https
GET/5a1Fazu8AA54nxGko9WTAnF6hhy/su?wd=htt&json=1&p=3&sid=22584_1441_21089_22176_20928&req=2&csor=0&pwd=ht&cb=jQuery110201988529936624046_1492182668411&_=1492
182668416
${body} Get Response Body
log ${body}
执行结果:
【原文归作者所有,欢迎转载,但是保留版权】