InteractsWithPages::dontSeeInElement()

$this dontSeeInElement(string $element, string $text) Assert that a given string is not seen inside an element. Parameters string $element string $text Return Value $this

InteractsWithPages::dontSeeElement()

$this dontSeeElement(string $selector, array $attributes = array()) Assert that an element is not present on the page. Parameters string $selector array $attributes Return Value $this

InteractsWithPages::dontSee()

$this dontSee(string $text) Assert that a given string is not seen on the current HTML. Parameters string $text Return Value $this

InteractsWithPages

InteractsWithPages trait InteractsWithPages (View source) Methods $this visit(string $uri) Visit the given URI with a GET request. $this visitRoute(string $route, array $parameters = array()) Visit the given named route with a GET request. $this within(string $element, Closure $callback) Narrow the test content to a specific area of the page. $this see(string $text, bool $negate = false) Assert that a given string is seen on the current HTML. $this dontSee(string $text

InteractsWithDatabase::seed()

void seed(string $class = 'DatabaseSeeder') Seed a given database connection. Parameters string $class Return Value void

InteractsWithDatabase

InteractsWithDatabase trait InteractsWithDatabase (View source) Methods void seed(string $class = 'DatabaseSeeder') Seed a given database connection.

InteractsWithContainer

InteractsWithContainer trait InteractsWithContainer (View source)

InteractsWithConsole::artisan()

int artisan(string $command, array $parameters = array()) Call artisan command and return code. Parameters string $command array $parameters Return Value int

InteractsWithConsole

InteractsWithConsole trait InteractsWithConsole (View source) Methods int artisan(string $command, array $parameters = array()) Call artisan command and return code.

InteractsWithAuthentication::seeIsAuthenticatedAs()

$this seeIsAuthenticatedAs($user, string|null $guard = null) Assert that the user is authenticated as the given user. Parameters $user string|null $guard Return Value $this