-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
duplicated params in self contained requests (#3608)
* fix duplicated params in self-contained+ export extracted values to file * add integration tests + fix percentage overflow in pb * fix integration test template id * integration test: validate if file exists
- Loading branch information
1 parent
ea5f8a0
commit 4e6ef44
Showing
7 changed files
with
158 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
id: save-extractor-values-to-file | ||
|
||
info: | ||
name: save extractor values to file | ||
author: pdteam | ||
severity: info | ||
|
||
requests: | ||
- method: GET | ||
path: | ||
- "{{BaseURL}}" | ||
|
||
extractors: | ||
- type: regex | ||
part: body | ||
regex: | ||
- '[0-9]+' | ||
to: output.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
id: self-contained-with-params | ||
|
||
info: | ||
name: self contained with params | ||
author: pd-team | ||
severity: info | ||
|
||
self-contained: true | ||
requests: | ||
- raw: | ||
- | | ||
GET http://127.0.0.1:5431/?something=here&key=value HTTP/1.1 | ||
Host: {{Hostname}} | ||
matchers: | ||
- type: word | ||
words: | ||
- This is self-contained response |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters