@@ -830,6 +830,17 @@ The `waitForLink` method may be used to wait until the given link text is displa
830
830
// Wait a maximum of one second for the link...
831
831
$browser->waitForLink('Create', 1);
832
832
833
+ <a name =" waiting-for-inputs " ></a >
834
+ #### Waiting For Inputs
835
+
836
+ The ` waitForInput ` method may be used to wait until the given input field is visible on the page:
837
+
838
+ // Wait a maximum of five seconds for the input...
839
+ $browser->waitForInput($field);
840
+
841
+ // Wait a maximum of one second for the input...
842
+ $browser->waitForInput($field, 1);
843
+
833
844
<a name =" waiting-on-the-page-location " ></a >
834
845
#### Waiting On The Page Location
835
846
@@ -986,6 +997,7 @@ Dusk provides a variety of assertions that you may make against your application
986
997
[ assertInputValueIsNot] ( #assert-input-value-is-not )
987
998
[ assertChecked] ( #assert-checked )
988
999
[ assertNotChecked] ( #assert-not-checked )
1000
+ [ assertIndeterminate] ( #assert-indeterminate )
989
1001
[ assertRadioSelected] ( #assert-radio-selected )
990
1002
[ assertRadioNotSelected] ( #assert-radio-not-selected )
991
1003
[ assertSelected] ( #assert-selected )
@@ -1301,6 +1313,13 @@ Assert that the given checkbox is not checked:
1301
1313
1302
1314
$browser->assertNotChecked($field);
1303
1315
1316
+ <a name =" assert-indeterminate " ></a >
1317
+ #### assertIndeterminate
1318
+
1319
+ Assert that the given checkbox is in an indeterminate state:
1320
+
1321
+ $browser->assertIndeterminate($field);
1322
+
1304
1323
<a name =" assert-radio-selected " ></a >
1305
1324
#### assertRadioSelected
1306
1325
0 commit comments