
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
robotframework-extendedrequestslibrary
Advanced tools
Extended HTTP client testing library for Robot Framework with OAuth2 support
|Build| |Coverage| |Grade| |Docs| |Version| |Status| |Python| |Download| |License|
ExtendedRequestsLibrary is an extended HTTP client library for Robot Framework_
with OAuth2_ support that leverages the requests_ project,
requests-oauthlib_ project, and RequestsLibrary_ project.
More information about this library can be found in the Keyword Documentation_.
Example '''''''
.. code:: robotframework
*** Settings ***
Library ExtendedRequestsLibrary
*** Test Cases ***
Post Request With Client Credentials
Create Client OAuth2 Session client https://token key secret base_url=https://service
${var} = Post Request client /endpoint json=${“key": "value"}
Log ${var}
Delete All Sessions
Post Request With Password
Create Password OAuth2 Session member https://token key secret usn pwd base_url=https://service
${var} = Post Request member /endpoint json=${“key": "value"}
Log ${var}
&{files} = Create Dictionary file1=/path/to/a_file.ext file2=/path/to/another_file.ext
${var} = Post Request member /endpoint files=&{files}
Log ${var}
Delete All Sessions
Using pip
'''''''''''''
The recommended installation method is using pip_:
.. code:: console
pip install robotframework-extendedrequestslibrary
The main benefit of using pip is that it automatically installs all
dependencies needed by the library. Other nice features are easy upgrading
and support for un-installation:
.. code:: console
pip install --upgrade robotframework-extendedrequestslibrary
pip uninstall robotframework-extendedrequestslibrary
Notice that using --upgrade above updates both the library and all
its dependencies to the latest version. If you want, you can also install
a specific version or upgrade only the requests project used by the library:
.. code:: console
pip install robotframework-extendedrequestslibrary==x.x.x
pip install --upgrade requests
pip install requests==x.x.x
Proxy configuration '''''''''''''''''''
If you are behind a proxy, you can use --proxy command line option
or set http_proxy and/or https_proxy environment variables to
configure pip to use it. If you are behind an authenticating NTLM proxy,
you may want to consider installing CNTML_ to handle communicating with it.
For more information about --proxy option and using pip with proxies
in general see:
Manual installation '''''''''''''''''''
If you do not have network connection or cannot make proxy to work, you need to resort to manual installation. This requires installing both the library and its dependencies yourself.
Make sure you have Robot Framework installed_.
Download source distributions (*.tar.gz) for the library and its dependencies:
Download PGP signatures (*.tar.gz.asc) for signed packages.
Find each public key used to sign the package:
.. code:: console
gpg --keyserver pgp.mit.edu --search-keys D1406DE7
Select the number from the list to import the public key
Verify the package against its PGP signature:
.. code:: console
gpg --verify robotframework-extendedrequestslibrary-x.x.x.tar.gz.asc robotframework-extendedrequestslibrary-x.x.x.tar.gz
Extract each source distribution to a temporary location.
Go to each created directory from the command line and install each project using:
.. code:: console
python setup.py install
If you are on Windows, and there are Windows installers available for certain projects, you can use them instead of source distributions. Just download 32bit or 64bit installer depending on your system, double-click it, and follow the instructions.
doc/
Keyword documentation_
src/ Python source code
test/ Test files
utest/
Python unit test
To write tests with Robot Framework and ExtendedRequestsLibrary, ExtendedRequestsLibrary must be imported into your Robot test suite.
.. code:: robotframework
*** Settings ***
Library ExtendedRequestsLibrary
See Robot Framework User Guide_ for more information.
More information about Robot Framework standard libraries and built-in tools
can be found in the Robot Framework Documentation_.
The Keyword Documentation_ can be found online, if you need to generate the keyword documentation, run:
.. code:: console
make doc
Test the testing library, talking about dogfooding, let's run:
.. code:: console
make test
If you would like to contribute code to Extended Requests Library project you can do so through GitHub by forking the repository and sending a pull request.
When submitting code, please make every effort to follow existing conventions and style in order to keep the code as readable as possible. Please also include appropriate test cases.
Before your code can be accepted into the project you must also sign the Extended Requests Library CLA_ (Individual Contributor License Agreement).
That's it! Thank you for your contribution!
Copyright (c) 2015, 2016 Richard Huang.
This library is free software, licensed under: GNU Affero General Public License (AGPL-3.0)_.
Documentation and other similar content are provided under Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License_.
.. _CNTML: http://goo.gl/ukiwSO .. _Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License: http://goo.gl/SNw73V .. _Extended Requests Library CLA: https://goo.gl/forms/hLzGj1hyWf .. _GNU Affero General Public License (AGPL-3.0): http://goo.gl/LOMJeU .. _Keyword Documentation: https://goo.gl/dSGkhR .. _OAuth2: http://goo.gl/VehoOR .. _pip: http://goo.gl/jlJCPE .. _requests: http://goo.gl/8p7MOG .. _requests-oauthlib: https://goo.gl/Tavax4 .. _RequestsLibrary: https://goo.gl/3FBo9w .. _Robot Framework: http://goo.gl/lES6WM .. _Robot Framework Documentation: http://goo.gl/zy53tf .. _Robot Framework installed: https://goo.gl/PFbWqM .. _Robot Framework User Guide: http://goo.gl/Q7dfPB .. |Build| image:: https://img.shields.io/travis/rickypc/robotframework-extendedrequestslibrary.svg :target: https://goo.gl/XLYqJy :alt: Build Status .. |Coverage| image:: https://img.shields.io/codecov/c/github/rickypc/robotframework-extendedrequestslibrary.svg :target: https://goo.gl/9vH9Ki :alt: Code Coverage .. |Grade| image:: https://img.shields.io/codacy/25e0956bfabc47428dcb19582e8d7a0a.svg :target: https://goo.gl/rh7Ss5 :alt: Code Grade .. |Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg :target: https://goo.gl/dSGkhR :alt: Keyword Documentation .. |Version| image:: https://img.shields.io/pypi/v/robotframework-extendedrequestslibrary.svg :target: https://goo.gl/CBuzbh :alt: Package Version .. |Status| image:: https://img.shields.io/pypi/status/robotframework-extendedrequestslibrary.svg :target: https://goo.gl/CBuzbh :alt: Development Status .. |Python| image:: https://img.shields.io/pypi/pyversions/robotframework-extendedrequestslibrary.svg :target: https://goo.gl/sXzgao :alt: Python Version .. |Download| image:: https://img.shields.io/pypi/dm/robotframework-extendedrequestslibrary.svg :target: https://goo.gl/CBuzbh :alt: Monthly Download .. |License| image:: https://img.shields.io/pypi/l/robotframework-extendedrequestslibrary.svg :target: http://goo.gl/LOMJeU :alt: License
FAQs
Extended HTTP client testing library for Robot Framework with OAuth2 support
We found that robotframework-extendedrequestslibrary demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.