We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbec12e commit c27a027Copy full SHA for c27a027
1 file changed
src/Lib/Interfaces/Web.php
@@ -517,9 +517,9 @@ public function dontSeeInField($field, $value): void;
517
* 'checkbox1' => true,
518
* // ...
519
* ];
520
- * $I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
+ * $I->submitForm('//form[@id=my-form]', $form, 'submitButton');
521
* // $I->amOnPage('/path/to/form-page') may be needed
522
- * $I->seeInFormFields('//form[@id=my-form]', string $form);
+ * $I->seeInFormFields('//form[@id=my-form]', $form);
523
* ```
524
*/
525
public function seeInFormFields($formSelector, array $params): void;
0 commit comments