Skip to content

Commit c27a027

Browse files
Update Web.php: Fixing syntax error (#21)
1 parent bbec12e commit c27a027

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Lib/Interfaces/Web.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -517,9 +517,9 @@ public function dontSeeInField($field, $value): void;
517517
* 'checkbox1' => true,
518518
* // ...
519519
* ];
520-
* $I->submitForm('//form[@id=my-form]', string $form, 'submitButton');
520+
* $I->submitForm('//form[@id=my-form]', $form, 'submitButton');
521521
* // $I->amOnPage('/path/to/form-page') may be needed
522-
* $I->seeInFormFields('//form[@id=my-form]', string $form);
522+
* $I->seeInFormFields('//form[@id=my-form]', $form);
523523
* ```
524524
*/
525525
public function seeInFormFields($formSelector, array $params): void;

0 commit comments

Comments
 (0)