.ide-helper.php 440 B

12345678910111213141516
  1. <?php
  2. namespace Laravel\Dusk
  3. {
  4. /**
  5. * @method $this whenTextAvailable(string $text, $callbackOrSeconds = null, int $seconds = null)
  6. * @method $this whenElementAvailable($selector, $callbackOrSeconds = null, int $seconds = null)
  7. * @method $this hasInput($field)
  8. * @method $this wait(int $seconds, $callback = null)
  9. * @method $this assertHidden($selector)
  10. */
  11. class Browser
  12. {
  13. }
  14. }