MakesHttpRequests::seeJson()

$this seeJson(array $data = null, bool $negate = false) Assert that the response contains JSON. Parameters array $data bool $negate Return Value $this

MakesHttpRequests::seeIsSelected()

$this seeIsSelected(string $selector, string $value, bool $negate = false) Assert that the expected value is selected. Parameters string $selector string $value bool $negate Return Value $this

MakesHttpRequests::seeIsChecked()

$this seeIsChecked(string $selector, bool $negate = false) Assert that the given checkbox is selected. Parameters string $selector bool $negate Return Value $this

MakesHttpRequests::seeInField()

$this seeInField(string $selector, string $expected, bool $negate = false) Assert that an input field contains the given value. Parameters string $selector string $expected bool $negate Return Value $this

MakesHttpRequests::seeInElement()

$this seeInElement(string $element, string $text, bool $negate = false) Assert that a given string is seen inside an element. Parameters string $element string $text bool $negate Return Value $this

MakesHttpRequests::seeElement()

$this seeElement(string $selector, array $attributes = array(), bool $negate = false) Assert that an element is present on the page. Parameters string $selector array $attributes bool $negate Return Value $this

MakesHttpRequests::see()

$this see(string $text, bool $negate = false) Assert that a given string is seen on the current HTML. Parameters string $text bool $negate Return Value $this

MakesHttpRequests::route()

Response route(string $method, string $name, array $routeParameters = array(), array $parameters = array(), array $cookies = array(), array $files = array(), array $server = array(), string $content = null) Call a named route and return the Response. Parameters string $method string $name array $routeParameters array $parameters array $cookies array $files array $server string $content Return Value Response

MakesHttpRequests::putJson()

$this putJson(string $uri, array $data = array(), array $headers = array()) Visit the given URI with a PUT request, expecting a JSON response. Parameters string $uri array $data array $headers Return Value $this

MakesHttpRequests::put()

$this put(string $uri, array $data = array(), array $headers = array()) Visit the given URI with a PUT request. Parameters string $uri array $data array $headers Return Value $this