SYMBOL INDEX (186 symbols across 22 files) FILE: src/Action.php class Action (line 5) | class Action method __construct (line 17) | public function __construct(string $name, array $arguments, string $ht... method getName (line 28) | public function getName() method getHtml (line 33) | public function getHtml() method setPreviousHtml (line 38) | public function setPreviousHtml(?string $html) method getPreviousHtml (line 43) | public function getPreviousHtml() method getArguments (line 48) | public function getArguments() method getPath (line 53) | public function getPath() FILE: src/BrowserActionCollector.php class BrowserActionCollector (line 10) | class BrowserActionCollector method __construct (line 17) | public function __construct($testName) method collect (line 24) | public function collect(string $action, array $arguments, Browser $bro... method processPerformanceLog (line 44) | protected function processPerformanceLog(Browser $browser) method pushAction (line 80) | protected function pushAction(string $name, array $payload) method pushPerformanceLog (line 95) | protected function pushPerformanceLog(array $log, Browser $browser) FILE: src/Console/StartDashboardCommand.php class StartDashboardCommand (line 19) | class StartDashboardCommand extends Command method __construct (line 32) | public function __construct() method handle (line 45) | public function handle() method addRoutes (line 68) | protected function addRoutes() method createTestWatcher (line 79) | protected function createTestWatcher() method getTestSuitePath (line 104) | protected function getTestSuitePath() method createApp (line 121) | protected function createApp(array $url) method tryToOpenInBrowser (line 134) | protected function tryToOpenInBrowser($url) FILE: src/Dusk/Browser.php class Browser (line 7) | class Browser extends \Laravel\Dusk\Browser method setActionCollector (line 21) | public function setActionCollector(BrowserActionCollector $collector) method getActionCollector (line 29) | public function getActionCollector() method visit (line 35) | public function visit($url) method visitRoute (line 45) | public function visitRoute($route, $parameters = []) method refresh (line 55) | public function refresh() method getCurrentPageSource (line 64) | public function getCurrentPageSource() method restoreHtml (line 73) | protected function restoreHtml() FILE: src/Dusk/Concerns/InteractsWithAuthentication.php type InteractsWithAuthentication (line 5) | trait InteractsWithAuthentication method login (line 8) | public function login() method loginAs (line 18) | public function loginAs($userId, $guard = null) method logout (line 28) | public function logout($guard = null) method assertAuthenticated (line 38) | public function assertAuthenticated($guard = null) method assertGuest (line 46) | public function assertGuest($guard = null) method assertAuthenticatedAs (line 54) | public function assertAuthenticatedAs($user, $guard = null) FILE: src/Dusk/Concerns/InteractsWithCookies.php type InteractsWithCookies (line 5) | trait InteractsWithCookies method cookie (line 8) | public function cookie($name, $value = null, $expiry = null, array $op... method plainCookie (line 16) | public function plainCookie($name, $value = null, $expiry = null, arra... method addCookie (line 24) | public function addCookie($name, $value, $expiry = null, array $option... method deleteCookie (line 32) | public function deleteCookie($name) FILE: src/Dusk/Concerns/InteractsWithElements.php type InteractsWithElements (line 5) | trait InteractsWithElements method elements (line 8) | public function elements($selector) method element (line 16) | public function element($selector) method clickLink (line 24) | public function clickLink($link, $element = 'a') method value (line 36) | public function value($selector, $value = null) method text (line 44) | public function text($selector) method attribute (line 52) | public function attribute($selector, $attribute) method keys (line 60) | public function keys($selector, ...$keys) method type (line 72) | public function type($field, $value) method append (line 84) | public function append($field, $value) method clear (line 96) | public function clear($field) method select (line 108) | public function select($field, $value = null) method radio (line 120) | public function radio($field, $value) method check (line 132) | public function check($field, $value = null) method uncheck (line 144) | public function uncheck($field, $value = null) method attach (line 156) | public function attach($field, $path) method press (line 168) | public function press($button) method pressAndWaitFor (line 180) | public function pressAndWaitFor($button, $seconds = 5) method drag (line 192) | public function drag($from, $to) method dragUp (line 204) | public function dragUp($selector, $offset) method dragDown (line 216) | public function dragDown($selector, $offset) method dragLeft (line 228) | public function dragLeft($selector, $offset) method dragRight (line 240) | public function dragRight($selector, $offset) method dragOffset (line 252) | public function dragOffset($selector, $x = 0, $y = 0) method acceptDialog (line 264) | public function acceptDialog() method typeInDialog (line 274) | public function typeInDialog($value) method dismissDialog (line 284) | public function dismissDialog() FILE: src/Dusk/Concerns/InteractsWithJavascript.php type InteractsWithJavascript (line 5) | trait InteractsWithJavascript method script (line 8) | public function script($scripts) FILE: src/Dusk/Concerns/InteractsWithMouse.php type InteractsWithMouse (line 5) | trait InteractsWithMouse method moveMouse (line 8) | public function moveMouse($xOffset, $yOffset) method mouseover (line 20) | public function mouseover($selector) method click (line 32) | public function click($selector = null) method clickAndHold (line 44) | public function clickAndHold() method doubleClick (line 55) | public function doubleClick() method rightClick (line 67) | public function rightClick($selector = null) method releaseMouse (line 79) | public function releaseMouse() FILE: src/Dusk/Concerns/MakesAssertions.php type MakesAssertions (line 5) | trait MakesAssertions method assertTitle (line 8) | public function assertTitle($title) method assertTitleContains (line 16) | public function assertTitleContains($title) method assertHasCookie (line 24) | public function assertHasCookie($name, $decrypt = true) method assertHasPlainCookie (line 32) | public function assertHasPlainCookie($name) method assertCookieMissing (line 40) | public function assertCookieMissing($name, $decrypt = true) method assertPlainCookieMissing (line 48) | public function assertPlainCookieMissing($name) method assertCookieValue (line 56) | public function assertCookieValue($name, $value, $decrypt = true) method assertPlainCookieValue (line 64) | public function assertPlainCookieValue($name, $value) method assertSee (line 72) | public function assertSee($text) method assertSeeIn (line 80) | public function assertSeeIn($selector, $text) method assertDontSeeIn (line 88) | public function assertDontSeeIn($selector, $text) method assertSourceHas (line 96) | public function assertSourceHas($code) method assertSourceMissing (line 104) | public function assertSourceMissing($code) method assertSeeLink (line 112) | public function assertSeeLink($link) method assertDontSeeLink (line 120) | public function assertDontSeeLink($link) method seeLink (line 128) | public function seeLink($link) method assertInputValue (line 136) | public function assertInputValue($field, $value) method assertInputValueIsNot (line 144) | public function assertInputValueIsNot($field, $value) method inputValue (line 152) | public function inputValue($field) method assertChecked (line 160) | public function assertChecked($field, $value = null) method assertNotChecked (line 168) | public function assertNotChecked($field, $value = null) method assertRadioSelected (line 176) | public function assertRadioSelected($field, $value) method assertRadioNotSelected (line 184) | public function assertRadioNotSelected($field, $value = null) method assertSelected (line 192) | public function assertSelected($field, $value) method assertNotSelected (line 200) | public function assertNotSelected($field, $value) method assertSelectHasOptions (line 208) | public function assertSelectHasOptions($field, array $values) method assertSelectMissingOptions (line 216) | public function assertSelectMissingOptions($field, array $values) method assertSelectHasOption (line 224) | public function assertSelectHasOption($field, $value) method assertSelectMissingOption (line 230) | public function assertSelectMissingOption($field, $value) method selected (line 236) | public function selected($field, $value) method assertValue (line 244) | public function assertValue($selector, $value) method assertVisible (line 252) | public function assertVisible($selector) method assertPresent (line 260) | public function assertPresent($selector) method assertMissing (line 268) | public function assertMissing($selector) method assertDialogOpened (line 276) | public function assertDialogOpened($message) method assertEnabled (line 284) | public function assertEnabled($field) method assertDisabled (line 292) | public function assertDisabled($field) method assertFocused (line 300) | public function assertFocused($field) method assertNotFocused (line 308) | public function assertNotFocused($field) method assertVue (line 316) | public function assertVue($key, $value, $componentSelector = null) method assertVueIsNot (line 324) | public function assertVueIsNot($key, $value, $componentSelector = null) method assertVueContains (line 332) | public function assertVueContains($key, $value, $componentSelector = n... method assertVueDoesNotContain (line 340) | public function assertVueDoesNotContain($key, $value, $componentSelect... method vueAttribute (line 348) | public function vueAttribute($componentSelector, $key) FILE: src/Dusk/Concerns/MakesUrlAssertions.php type MakesUrlAssertions (line 5) | trait MakesUrlAssertions method assertUrlIs (line 8) | public function assertUrlIs($url) method assertSchemeIs (line 16) | public function assertSchemeIs($scheme) method assertSchemeIsNot (line 24) | public function assertSchemeIsNot($scheme) method assertHostIs (line 32) | public function assertHostIs($host) method assertHostIsNot (line 40) | public function assertHostIsNot($host) method assertPortIs (line 48) | public function assertPortIs($port) method assertPortIsNot (line 56) | public function assertPortIsNot($port) method assertPathIs (line 64) | public function assertPathIs($path) method assertPathBeginsWith (line 72) | public function assertPathBeginsWith($path) method assertPathIsNot (line 80) | public function assertPathIsNot($path) method assertFragmentIs (line 88) | public function assertFragmentIs($fragment) method assertFragmentBeginsWith (line 96) | public function assertFragmentBeginsWith($fragment) method assertFragmentIsNot (line 104) | public function assertFragmentIsNot($fragment) method assertRouteIs (line 112) | public function assertRouteIs($route, $parameters = []) method assertQueryStringHas (line 120) | public function assertQueryStringHas($name, $value = null) method assertQueryStringMissing (line 128) | public function assertQueryStringMissing($name) method assertHasQueryStringParameter (line 136) | protected function assertHasQueryStringParameter($name) FILE: src/Dusk/Concerns/WaitsForElements.php type WaitsForElements (line 7) | trait WaitsForElements method whenAvailable (line 10) | public function whenAvailable($selector, Closure $callback, $seconds =... method waitFor (line 18) | public function waitFor($selector, $seconds = null) method waitUntilMissing (line 26) | public function waitUntilMissing($selector, $seconds = null) method waitForText (line 34) | public function waitForText($text, $seconds = null) method waitForLink (line 42) | public function waitForLink($link, $seconds = null) method waitForLocation (line 50) | public function waitForLocation($path, $seconds = null) method waitForRoute (line 58) | public function waitForRoute($route, $parameters = [], $seconds = null) method waitUntil (line 66) | public function waitUntil($script, $seconds = null, $message = null) method waitForDialog (line 74) | public function waitForDialog($seconds = null) method waitForReload (line 82) | public function waitForReload($callback = null, $seconds = null) method waitUsing (line 90) | public function waitUsing($seconds, $interval, Closure $callback, $mes... FILE: src/DuskDashboardServiceProvider.php class DuskDashboardServiceProvider (line 7) | class DuskDashboardServiceProvider extends ServiceProvider method register (line 12) | public function register() FILE: src/DuskProcessFactory.php class DuskProcessFactory (line 7) | class DuskProcessFactory method make (line 14) | public static function make() method binary (line 24) | protected static function binary() method arguments (line 34) | protected static function arguments() FILE: src/Ratchet/Http/Controller.php class Controller (line 9) | abstract class Controller implements HttpServerInterface method onClose (line 11) | public function onClose(ConnectionInterface $connection) method onError (line 15) | public function onError(ConnectionInterface $connection, Exception $e) method onMessage (line 19) | public function onMessage(ConnectionInterface $from, $msg) FILE: src/Ratchet/Http/DashboardController.php class DashboardController (line 10) | class DashboardController extends Controller method onOpen (line 12) | public function onOpen(ConnectionInterface $connection, RequestInterfa... FILE: src/Ratchet/Http/EventController.php class EventController (line 12) | class EventController extends Controller method onOpen (line 14) | public function onOpen(ConnectionInterface $conn, RequestInterface $re... FILE: src/Ratchet/Server/App.php class App (line 13) | class App extends \Ratchet\App method __construct (line 15) | public function __construct($httpHost, $port, $address, LoopInterface ... FILE: src/Ratchet/Server/HttpServer.php class HttpServer (line 7) | class HttpServer extends \Ratchet\Http\HttpServer method __construct (line 9) | public function __construct(HttpServerInterface $component) FILE: src/Ratchet/Socket.php class Socket (line 10) | class Socket implements MessageComponentInterface method onOpen (line 14) | public function onOpen(ConnectionInterface $connection) method onMessage (line 19) | public function onMessage(ConnectionInterface $from, MessageInterface ... method onClose (line 30) | public function onClose(ConnectionInterface $connection) method onError (line 34) | public function onError(ConnectionInterface $connection, \Exception $e) FILE: src/Testing/TestCase.php class TestCase (line 16) | abstract class TestCase extends BaseTestCase method newBrowser (line 24) | protected function newBrowser($driver) method createBrowsersFor (line 36) | protected function createBrowsersFor(Closure $callback) method getTestName (line 49) | protected function getTestName() method enableNetworkLogging (line 54) | protected function enableNetworkLogging(DesiredCapabilities $capabilit... method onNotSuccessfulTest (line 74) | protected function onNotSuccessfulTest(Throwable $t): void FILE: src/Watcher.php class Watcher (line 12) | class Watcher method __construct (line 20) | public function __construct(Finder $finder, LoopInterface $loop) method startWatching (line 26) | public function startWatching(Closure $callback)