how do you test `extraModalActions`?

example code of table (it works fine in UI).
->actions([
    EditAction::make('edit-post')
        ->iconButton()
        ->form($this->schema())
        ->extraModalActions([
            DeleteAction::make('delete-post')
            ->iconButton()
            ->cancelParentActions(),
        ]),
], ActionsPosition::BeforeColumns);
Solution
solution
Livewire::test(ListPost::class)
    ->loadTable()
    ->mountTableAction(['edit-post', 'delete-post'], $post)
    ->callMountedTableAction();
Was this page helpful?