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
Copy file name to clipboardExpand all lines: docs/api_action_steps.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# API Action Steps
2
2
3
-
### I send {text} request to {landing-url}{headers} and save response as {text} ✅
3
+
### I send {string} request to {landingUrl}{headers} and save response as {string} ✅
4
4
5
5
Send request to the endpoint
6
6
@@ -15,7 +15,7 @@ example:
15
15
When I send "GET" request to "$BASE_API_URL" with headers "$headers" and save response as "response"
16
16
```
17
17
---
18
-
### I send {text} request to {landing-url}{headers} with qs {text} and save response as {text} ✅
18
+
### I send {string} request to {landingUrl}{headers} with qs {string} and save response as {string} ✅
19
19
20
20
Send request to the endpoint with query string
21
21
@@ -31,7 +31,7 @@ example:
31
31
When I send "GET" request to "https://www.some_service.com/some_endpoint" with qs "?category=HR&name=test" and save response as "response"
32
32
```
33
33
---
34
-
### I send {text} request to {landing-url}{headers} with Body {json} and save response as {text} ✅
34
+
### I send {string} request to {landingUrl}{headers} with Body {json} and save response as {string} ✅
35
35
36
36
Send request with body
37
37
@@ -47,7 +47,7 @@ example:
47
47
When I send "POST" request to "$BASE_API_URL" with Body "test_data_file.json" and save response as "response"
48
48
```
49
49
---
50
-
### I send {text} request to {landing-url}{headers} with qs {text} and Body {json} and save response as {text} ✅
50
+
### I send {string} request to {landingUrl}{headers} with qs {string} and Body {json} and save response as {string} ✅
51
51
52
52
Send request with body and query string
53
53
@@ -64,7 +64,7 @@ example:
64
64
When I send "PUT" request to "https://www.some_service.com/some_endpoint/" with qs "?category=HR&name=test" and Body "test_data_file.json" and save response as "response"
65
65
```
66
66
---
67
-
### I send {text} request and save response as {text} to {landing-url}{headers} with Body: ✅
67
+
### I send {string} request and save response as {string} to {landingUrl}{headers} with Body: ✅
68
68
69
69
Send request with body that given as part of Cucumber step
0 commit comments