-
httpx version:v1.6.0 Current Behavior:
I was looking at how to add multiple string matchers at the same time and found the comment from one of the developers. The problem is that It does not work as expected. It works as an I'm not sure if this feature even exists. I only found one comment that mentions Sorry, if I just misinterpreted the dev comment. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@rushter
Other ways to do the same with DSL filters like
|
Beta Was this translation helpful? Give feedback.
-
@ehsandeep It looks like it's broken when using the last version of httpx.
Returns a match. |
Beta Was this translation helpful? Give feedback.
@rushter
echo 'https://github.com/' | httpx --json -ms "Github" -ms "NON_EXISTENT_PATTERN"
is right example to use, possibly not the best example I've shared in linked comment where I was looking for stringand
passed to-ms
option but you don't need to mention the operator, if you've used multiple-ms
option, they are treated with AND condition.Other ways to do the same with DSL filters like
contains_all
,contains_any