docs: add documentation for HTTP form data#463
Conversation
There was a problem hiding this comment.
Pull request overview
Updates HttpClient matching documentation to cover generic content matching, richer query matching, and adds form-data (URL-encoded) content matching guidance.
Changes:
- Replaced
It.IsStringContent(...)examples withIt.IsHttpContent(...)and newWithString...matchers. - Expanded
.WithQuery(...)docs to include key/value pair matching and raw query string matching. - Added docs for URL-encoded form-data matching (
WithFormData(...)) in HttpClient examples.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 10 comments.
| File | Description |
|---|---|
| README.md | Updates core README HttpClient section with new content/query/form-data matching examples and wording. |
| Docs/pages/special-types/01-httpclient.md | Mirrors README changes in dedicated HttpClient docs page. |
🚀 Benchmark ResultsDetails
|
|
|
This is addressed in release v1.3.0. |



Updates HttpClient matching documentation to cover generic content matching, richer query matching, and adds form-data (URL-encoded) content matching guidance.
Key Changes:
It.IsStringContent(...)examples withIt.IsHttpContent(...)and newWithString...matchers..WithQuery(...)docs to include key/value pair matching and raw query string matching.WithFormData(...)) in HttpClient examples.