.ide-helper.php 506 B

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