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
### Description
- Remove `Request.query_params` field.
- The URL params can be sent as a part of the URL and both our HTTP
clients can handle it.
### Issues
- Closes: #615
### Testing
- Add a new test checking the URL query params.
### Checklist
- [x] CI passed
Copy file name to clipboardExpand all lines: docs/examples/fill_and_submit_web_form.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Now, let's create a POST request with the form fields and their values using the
46
46
{RequestExample}
47
47
</CodeBlock>
48
48
49
-
Alternatively, you can send form data as URL parameters using the `query_params` argument. It depends on the form and how it is implemented. However, sending the data as a POST request body using the `payload` is generally a better approach.
49
+
Alternatively, you can send form data as URL parameters using the `url` argument. It depends on the form and how it is implemented. However, sending the data as a POST request body using the `payload` is generally a better approach.
0 commit comments