We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b62f4f1 commit 5fb434bCopy full SHA for 5fb434b
src/Codeception/Module/REST.php
@@ -430,6 +430,12 @@ public function amAWSAuthenticated($additionalAWSConfig = [])
430
* 'tmp_name' => codecept_data_dir('sample_file.pdf')
431
* ]
432
* ]);
433
+ * // Some frameworks (e.g. Symfony) create field names in the form of an "array": `<input type="text" name="form[task]">`
434
+ * // In this case you need to pass the fields like this:
435
+ * $I->sendPOST('/add-task', ['form' => [
436
+ * 'task' => 'lorem ipsum',
437
+ * 'category' => 'miscellaneous',
438
+ * ]]);
439
* ```
440
*
441
* @param $url
0 commit comments