Skip to content

Commit 79fc96d

Browse files
committedMay 6, 2024·
build: version up to 1.0a10 and updated doc
1 parent f2b4270 commit 79fc96d

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed
 

‎README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,23 @@
44
[![Latest Version](https://img.shields.io/pypi/v/robotframework-requests)](https://pypi.python.org/pypi/robotframework-requests)
55

66
🏠 ``RequestsLibrary`` is a [Robot Framework](https://robotframework.org/) library
7-
aimed to provide HTTP api testing functionalities by wrapping the well known [Python Requests Library](https://github.com/kennethreitz/requests).
7+
aimed to provide HTTP api testing functionalities by wrapping the well
8+
known [Python Requests Library](https://github.com/kennethreitz/requests).
9+
10+
## Install old version 0.9 (supports python 2.7+)
811

9-
## Install stable version
1012
```sh
1113
pip install robotframework-requests
1214
```
1315

14-
## Install pre-release version
16+
## Install pre-release version 1.0a (supports python 3.8+)
17+
1518
```sh
1619
pip install robotframework-requests --pre
1720
```
1821

1922
## 🤖 Quick start
23+
2024
```robotframework
2125
*** Settings ***
2226
Library RequestsLibrary
@@ -35,12 +39,15 @@ Quick Get A JSON Body Test
3539
```
3640

3741
### What's new in 0.9
42+
3843
Sessionless keywords are now available, you can just `GET`, `POST`, etc.. no need to create a session anymore!
44+
3945
```robotframework
4046
${resp}= GET https://www.google.com
4147
```
4248

4349
`Status Should Be` and `Request Should Be Successfull` can use the last response, no need to pass the response anymore!
50+
4451
```robotframework
4552
GET https://www.google.com
4653
Status Should Be 200
@@ -68,6 +75,7 @@ Lot of pre-parsing / encoding has been removed to have a more accurate and uncha
6875
Main keywords file has been split with a more logic division to allow better and faster maintenance.
6976

7077
## 🤖 More examples
78+
7179
```robotframework
7280
*** Settings ***
7381
Library Collections
@@ -94,15 +102,21 @@ Post Request Test
94102
```
95103

96104
### 📖 Keywords documentation
97-
Robotframework-requests offers a wide set of keywords which can be found in the [Keywords documentation](http://marketsquare.github.io/robotframework-requests/doc/RequestsLibrary.html)
105+
106+
Robotframework-requests offers a wide set of keywords which can be found in
107+
the [Keywords documentation](http://marketsquare.github.io/robotframework-requests/doc/RequestsLibrary.html)
98108

99109
### 🔬 Test examples
110+
100111
You can find many test examples inside the `atests` folder.
101112

102113
## 🤝 Contributing ✍️
103-
Feel free to contribute and open an issue in order to discuss it. Before doing it take a look at the [contribution guidelines](CONTRIBUTING.md).
114+
115+
Feel free to contribute and open an issue in order to discuss it. Before doing it take a look at
116+
the [contribution guidelines](CONTRIBUTING.md).
104117

105118
📢 Get in touch with the community via slack and Users group
119+
106120
- [Robot Framework Slack #requests channel](https://robotframework-slack-invite.herokuapp.com/)
107121
- [Robot Framework Users Group](https://groups.google.com/forum/#!forum/robotframework-users)
108122

‎doc/RequestsLibrary.html

+1-1
Large diffs are not rendered by default.

‎src/RequestsLibrary/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '1.0a9'
1+
VERSION = '1.0a10'

0 commit comments

Comments
 (0)