BatchDelete.php 420 B

1234567891011121314151617181920
  1. <?php
  2. namespace Tests\Browser\Components\Grid\Actions;
  3. class BatchDelete extends Delete
  4. {
  5. /**
  6. * 读取组件的元素快捷方式
  7. *
  8. * @return array
  9. */
  10. public function elements()
  11. {
  12. return [
  13. '@item' => 'a[data-action="batch-delete"]:visible',
  14. '@confirm' => '.swal2-confirm',
  15. '@cancel' => '.swal2-cancel',
  16. ];
  17. }
  18. }