如何使用REST库机器人框架?(How to use REST library in Robot F

2019-08-01 13:06发布

有谁知道如何使用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&timestamp=1331161200&sensor=true
    Response    test

任何想法如何使用这个库?

Answer 1:

这个库似乎是不良记录。 也许你应该看看https://github.com/bulkan/robotframework-requests ,这似乎是记录和维护。



Answer 2:

我发现了另一个库,它可以做HTTP调用,甚至解析JSON。 此外,它是有据可查的http://peritus.github.com/robotframework-httplibrary/HttpLibrary.html 。



Answer 3:

机器人框架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库...



Answer 4:

use 'requests' library. In Your RIDE tool, Open 'Library' & enter 'requests' and save. Execute your test case.Hopefully it will work for you



文章来源: How to use REST library in Robot Framework?