.ide-helper.php 562 B

12345678910111213141516171819
  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 assertHidden($selector)
  10. * @method $this is(Component $component)
  11. * @method $this assertSeeTextIn(string $selector, string $text)
  12. * @method $this assertSeeText(string $text)
  13. */
  14. class Browser
  15. {
  16. }
  17. }