MakesHttpRequests::dontSeeLink()

$this dontSeeLink(string $text, string|null $url = null) Assert that a given link is not seen on the page. Parameters string $text string|null $url Return Value $this

MakesHttpRequests::dontSeeJson()

$this dontSeeJson(array $data = null) Assert that the response doesn't contain JSON. Parameters array $data Return Value $this

MakesHttpRequests::dontSeeIsSelected()

$this dontSeeIsSelected(string $selector, string $value) Assert that the given value is not selected. Parameters string $selector string $value Return Value $this

MakesHttpRequests::dontSeeIsChecked()

$this dontSeeIsChecked(string $selector) Assert that the given checkbox is not selected. Parameters string $selector Return Value $this

MakesHttpRequests::dontSeeInField()

$this dontSeeInField(string $selector, string $value) Assert that an input field does not contain the given value. Parameters string $selector string $value Return Value $this

MakesHttpRequests::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

MakesHttpRequests::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

MakesHttpRequests::dontSee()

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

MakesHttpRequests::deleteJson()

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

MakesHttpRequests::delete()

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