Skip to content

Releases: SavvyWombat/laravel-assert-selector-contains

Minor cleanup to avoid PHP deprecation warning

23 Nov 08:57
9692ebb

Choose a tag to compare

Merge pull request #2 from samlev/cleanup/php_depracations

Minor cleanup to avoid PHP deprecation warning

1.3.0

10 Mar 04:16

Choose a tag to compare

Add support for Laravel 10.x

1.2.0

11 Jan 02:59

Choose a tag to compare

Added new assertions to look for substrings in attributes:

  • assertSelectorAttributeContains
  • assertSelectorAttributeDoesNotContain

Improved documentation and testing

20 Oct 23:30

Choose a tag to compare

1.1.0

add codecov badge to README

1.0.0

16 Sep 04:53

Choose a tag to compare

Initial release:

  • assertSelectorExists($selector)
  • assertSelectorDoesNotExist($selector)
  • assertSelectorContains($selector, $value)
  • assertSelectorDoesNotContain($selector, $value)
  • assertSelectorAttributeExists($selector, $attribute)
  • assertSelectorAttributeDoesNotExist($selector, $attribute)
  • assertSelectorAttributeEquals($selector, $attribute, $value)
  • assertSelectorAttributeDoesNotEqual($selector, $attribute, $value)