.ide-helper.php 801 B

1234567891011121314151617181920212223
  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. * @method $this scrollToBottom()
  17. */
  18. class Browser
  19. {
  20. }
  21. }