Select2.js support for the Laravel Dusk testing. Support Select2 v3 and Select2 v4 versions.
composer require --dev roquie/laravel-dusk-select2
Now, u may use it!
For default select2:
$browse->select2('@selector');
@selector
class name of your <select>
html tag.
If value not passed, it be selected automatically.
Another way, if need concrete value:
$browse->select2('@selector', 'you_text_value');
For multiple mode usage like this:
$browse->select2('@selector', ['foo', 'bar'], 5);
// the last parameter - maximum count of seconds for ajax loading before choice item.
- Add Laravel Dusk tests for Laravel Dusk extend feature ;)
- Add gif demonstration how it works.
- May be use
+ select2
out of the box?. - Integration with Circle CI.
Without breaking changes.
- Update your
roquie/laravel-dusk-select2
dependency to^2.1
in yourcomposer.json
file.
- This project moved back to native dependency
laravel/dusk
package and does not depend on full Laravel Framework like before in 1.*. - Tests updated
- Migrated to new phpunit schema.
- Updated dependencies to latest versions.
- Removed
composer.lock
- Fixed CI build
- Tests moved to namespace.
- Replaced Docker Image who runs these code.
2.0
version of this package potentially has full compatibility with select2 v.3 and v.4.
But, I deleted a lot of code regarding select2 v.3. Tests passed for both versions, but with
some changes.
- Update your
roquie/laravel-dusk-select2
dependency to^2.0
in yourcomposer.json
file. - That's all ...
- Project migrated to
konsulting/dusk-standalone
package to run tests. It more better solution, compares to download full laravel framework. - Tests updated
- Minimal PHP version is
7.1
(!) - Updated dependencies to latest versions.
- Fixed a bug when search input founded but is not displayed.
- Update your
roquie/laravel-dusk-select2
dependency to^1.0
in yourcomposer.json
file. - Remove
+ .select2
from first parameter, also see last parameter.
Believe me, it's better to run it all in Docker:
make composer test
MIT License
Copyright (c) 2017-2021 [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.