有谁知道如何使用REST库机器人框架? 图书馆可在这里http://code.google.com/p/robotframework-restlibrary/source/browse/trunk/RestLibrary.py 。 好像没有可用的文档。
我试着在机器人框架是这样的,但有从请求回来没有反应:
REST Test Case
Get https://maps.googleapis.com/maps/api/timezone/json?location=39.6034810,-119.6822510×tamp=1331161200&sensor=true
Response test
任何想法如何使用这个库?
这个库似乎是不良记录。 也许你应该看看https://github.com/bulkan/robotframework-requests ,这似乎是记录和维护。
我发现了另一个库,它可以做HTTP调用,甚至解析JSON。 此外,它是有据可查的http://peritus.github.com/robotframework-httplibrary/HttpLibrary.html 。
机器人框架REST库自2009年以来未显影(见变化 )。
Robot Framework的官方页面引用几个HTTP水平测试库 ,例如:
robotframework-请求 -发展是积极的,并使用HTTP请求Python库。
实例应用:
Grab Avatar Url Create Session github https://api.github.com ${resp}= ... Get Request github /users/jandias Should Be Equal As Strings ... ${resp.status_code} 200 Dictionary Should Contain Key ... ${resp.json()} avatar_url
robotframework-httplibrary -使用WebTest的(与livetest)Python库...
use 'requests' library.
In Your RIDE tool, Open 'Library' & enter 'requests' and save.
Execute your test case.Hopefully it will work for you