@@ -2348,17 +2348,17 @@ protected function getSubmissionFormFieldName(string $name): string
2348
2348
* ``` html
2349
2349
* <form action="/sign_up">
2350
2350
* Login:
2351
- * <input type="text" name="user[login]" / ><br/ >
2351
+ * <input type="text" name="user[login]"><br>
2352
2352
* Password:
2353
- * <input type="password" name="user[password]" / ><br/ >
2353
+ * <input type="password" name="user[password]"><br>
2354
2354
* Do you agree to our terms?
2355
- * <input type="checkbox" name="user[agree]" / ><br/ >
2355
+ * <input type="checkbox" name="user[agree]"><br>
2356
2356
* Select pricing plan:
2357
2357
* <select name="plan">
2358
2358
* <option value="1">Free</option>
2359
2359
* <option value="2" selected="selected">Paid</option>
2360
2360
* </select>
2361
- * <input type="submit" name="submitButton" value="Submit" / >
2361
+ * <input type="submit" name="submitButton" value="Submit">
2362
2362
* </form>
2363
2363
* ```
2364
2364
*
@@ -2458,7 +2458,7 @@ protected function getSubmissionFormFieldName(string $name): string
2458
2458
* For example, given the following HTML:
2459
2459
*
2460
2460
* ``` html
2461
- * <input type="submit" name="submitButton" value="Submit" / >
2461
+ * <input type="submit" name="submitButton" value="Submit">
2462
2462
* ```
2463
2463
*
2464
2464
* `$button` could be any one of the following:
@@ -3153,7 +3153,7 @@ protected function matchFirstOrFail(WebDriverSearchContext $page, $selector): We
3153
3153
*
3154
3154
* ``` php
3155
3155
* <?php
3156
- * // <input id="page" value="old" / >
3156
+ * // <input id="page" value="old">
3157
3157
* $I->pressKey('#page', 'a'); // => olda
3158
3158
* $I->pressKey('#page', ['ctrl', 'a'],'new'); //=> new
3159
3159
* $I->pressKey('#page', ['shift', '111'],'1','x'); //=> old!!!1x
0 commit comments