Robot Framework's library to test REST interfaces.
Library is mostly following structure of Requests-library.
- More information about this library can be found in the Keyword Documentation.
- For keyword completion in RIDE you can download this Library Specs and place it in your PYTHONPATH.
If you are using the robotframework-maven-plugin you can use this library by adding the following dependency to your pom.xml:
<dependency> <groupId>com.github.hi-fi</groupId> <artifactId>robotframework-httprequestlibrary</artifactId> <version>0.0.5</version> </dependency> With Gradle, library can be use by importing it as a dependency in build.gradle:
runtime('com.github.hi-fi:robotframework-httprequestlibrary:0.0.5') Library import in Robot tests can be done with:
| *** Settings *** | |
| Library | HttpRequestLibrary |
Usage examples can be found at Tests-folder.