EditRecord page for example, we would have these footer actions:save() function through wire:submit and the other uses JS (and doesn't really need testing).->call(…) in the test, bypassing having to mount the action, etc.->callAction(TestAction::make('header_action')) works because it's at the top level of the component, but footer actions cannot be resolved and called by the same function.->callAction(TestAction::make('footer_action')) leads to a failed assertion that the footer action is visible.Form components, EmbeddedSchemas etc., and it's quite confusing to know exactly which combinations of $component and $schema parameters to use with ->schemaComponent($component, $schema) on TestAction.Actions component in the footer of a Form, which eventually forms part of the content Schema.Testable to target these (form) footer actions?