InteractsWithPages::seeIsChecked()

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

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

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

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

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

InteractsWithPages::dontSeeText()

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

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

InteractsWithPages::dontSeeIsSelected()

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

InteractsWithPages::dontSeeIsChecked()

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

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