.ide-helper.php 763 B

12345678910111213141516171819202122
  1. <?php
  2. namespace Laravel\Dusk
  3. {
  4. use Laravel\Dusk\Component;
  5. /**
  6. * @method $this extend(string|Component $selector, \Closure $callback)
  7. * @method $this whenTextAvailable(string $text, $callbackOrSeconds = null, int $seconds = null)
  8. * @method $this whenElementAvailable($selector, $callbackOrSeconds = null, int $seconds = null)
  9. * @method $this hasInput($field)
  10. * @method $this assertHidden($selector)
  11. * @method $this is(Component $component)
  12. * @method $this assertSeeTextIn(string $selector, string $text)
  13. * @method $this assertSeeText(string $text)
  14. * @method $this assertSeeInBody(string $text)
  15. * @method $this waitForTextInBody(string $text, int $seconds = null)
  16. */
  17. class Browser
  18. {
  19. }
  20. }