robotframework-httprequestlibrary

A Robot Framework library for HTTP request testing.

License

License

GroupId

GroupId

com.github.hi-fi
ArtifactId

ArtifactId

robotframework-httprequestlibrary
Last Version

Last Version

0.0.16
Release Date

Release Date

Type

Type

jar
Description

Description

robotframework-httprequestlibrary
A Robot Framework library for HTTP request testing.
Project URL

Project URL

https://github.com/hi-fi/robotframework-httprequestlibrary
Source Code Management

Source Code Management

https://github.com/hi-fi/robotframework-httprequestlibrary

Download robotframework-httprequestlibrary

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.hi-fi/robotframework-httprequestlibrary/ -->
<dependency>
    <groupId>com.github.hi-fi</groupId>
    <artifactId>robotframework-httprequestlibrary</artifactId>
    <version>0.0.16</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.hi-fi/robotframework-httprequestlibrary/
implementation 'com.github.hi-fi:robotframework-httprequestlibrary:0.0.16'
// https://jarcasting.com/artifacts/com.github.hi-fi/robotframework-httprequestlibrary/
implementation ("com.github.hi-fi:robotframework-httprequestlibrary:0.0.16")
'com.github.hi-fi:robotframework-httprequestlibrary:jar:0.0.16'
<dependency org="com.github.hi-fi" name="robotframework-httprequestlibrary" rev="0.0.16">
  <artifact name="robotframework-httprequestlibrary" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.hi-fi', module='robotframework-httprequestlibrary', version='0.0.16')
)
libraryDependencies += "com.github.hi-fi" % "robotframework-httprequestlibrary" % "0.0.16"
[com.github.hi-fi/robotframework-httprequestlibrary "0.0.16"]

Dependencies

compile (10)

Group / Artifact Type Version
org.robotframework : javalib-core jar 2.0.3
com.github.hi-fi : httpclient jar 0.0.6
commons-io : commons-io jar 2.6
org.apache.commons : commons-lang3 jar 3.9
org.apache.logging.log4j : log4j-api jar 2.13.1
org.apache.logging.log4j : log4j-core jar 2.13.1
com.google.code.gson : gson jar 2.8.6
commons-logging : commons-logging jar 1.2
org.python : jython jar 2.7.2b3
org.robotframework : robotframework jar 3.1.2

test (1)

Group / Artifact Type Version
junit : junit jar 4.13

Project Modules

There are no modules declared in this project.

REST testing library for Robot Framework

Introduction

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.

Usage

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.marketsquare</groupId>
    <artifactId>robotframework-httprequestlibrary</artifactId>
    <version>0.0.17</version>
</dependency>

With Gradle, library can be use by importing it as a dependency in build.gradle:

runtime('com.github.marketsquare:robotframework-httprequestlibrary:0.0.17')

If you are not using any dependency management too, you can use the jar-with-dependencies, which contains all required libraries. Running tests with that is done with command:

java -jar robotframework-httprequestlibrary-0.0.17-jar-with-dependencies.jar <test directory> 

Library import in Robot tests can be done with:

*** Settings ***
Library HttpRequestLibrary

Example

Usage examples can be found at Tests-folder.

Versions

Version
0.0.16
0.0.15
0.0.14
0.0.13
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1