You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
🏠 ``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+)
8
11
9
-
## Install stable version
10
12
```sh
11
13
pip install robotframework-requests
12
14
```
13
15
14
-
## Install pre-release version
16
+
## Install pre-release version 1.0a (supports python 3.8+)
17
+
15
18
```sh
16
19
pip install robotframework-requests --pre
17
20
```
18
21
19
22
## 🤖 Quick start
23
+
20
24
```robotframework
21
25
*** Settings ***
22
26
Library RequestsLibrary
@@ -35,12 +39,15 @@ Quick Get A JSON Body Test
35
39
```
36
40
37
41
### What's new in 0.9
42
+
38
43
Sessionless keywords are now available, you can just `GET`, `POST`, etc.. no need to create a session anymore!
44
+
39
45
```robotframework
40
46
${resp}= GET https://www.google.com
41
47
```
42
48
43
49
`Status Should Be` and `Request Should Be Successfull` can use the last response, no need to pass the response anymore!
50
+
44
51
```robotframework
45
52
GET https://www.google.com
46
53
Status Should Be 200
@@ -68,6 +75,7 @@ Lot of pre-parsing / encoding has been removed to have a more accurate and uncha
68
75
Main keywords file has been split with a more logic division to allow better and faster maintenance.
69
76
70
77
## 🤖 More examples
78
+
71
79
```robotframework
72
80
*** Settings ***
73
81
Library Collections
@@ -94,15 +102,21 @@ Post Request Test
94
102
```
95
103
96
104
### 📖 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)
98
108
99
109
### 🔬 Test examples
110
+
100
111
You can find many test examples inside the `atests` folder.
101
112
102
113
## 🤝 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).
104
117
105
118
📢 Get in touch with the community via slack and Users group
0 commit comments