机器人框架httpd模拟器

robotframework-httpd的Python项目详细描述


用于httpd模拟器的robot框架关键字库。

此模块允许轻松创建http服务器并测试接收到http服务器的请求

安装

pip install robotframework-httpd

用法

HTTPDLibrary keyword documentation

*** Settings ***LibraryHTTPDLibraryport=5060LibraryRequestsLibraryLibraryCollections*** Test Cases ***Test HttpdLibrary GETGet Request/test?param1=p1Run HttpdCreate SessionHttpdhttp://localhost:5060
    ${resp}=    GetHttpd/test?param1=p1wait to get requestTest HttpdLibrary PostPost Requestthis is bodyRun HttpdCreate SessionHttpdhttp://localhost:5060
    ${resp}=    PostHttpd/data=this is bodywait to get request*** Keywords ***Get Request
    [Arguments]  ${path}
    ${request}=     create dictionarymethodGETpath    ${path}
    set wished request  ${request}

Post Request
    [Arguments]  ${post_body}
    ${request}=     create dictionarymethodPOSTpost_body    ${post_body}
    set wished request  ${request}

贡献

如果你喜欢这个模块,请贡献!我欢迎修补程序, 文档、问题、想法等。

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java与Groovy正则表达式匹配混淆   java控制台未定义为JSNI   主目录中的java指针异常   java如何获取hashmap中的arrayList的大小   ApachePOI用于文本,Java代码中的word doc(.docx)中没有进行追加   Ruby对象到Java对象   JavaSpringJPA哈希集只返回一个值   Java在执行由配置了精确类路径参数的mavenjarpluin生成的可执行jar时无法找到依赖项   java我试图在画布上写一个文本,但什么也没发生   java HTTP 404源服务器找不到目标资源的当前表示形式,或者不愿意透露存在该表示形式。不起作用   java提取小数点后的最后一个数字   oop Java:无法访问对象的元素   PHP URL中RecyclerView中的java句柄空异常   不调用OnCreateViewHolder的java Update RecyclerView适配器项