getURL() to call View Action on Table

I have an infolist connected to a View Action on a list table.
return $table
->columns([...])
->actions([
ViewAction::make()
->slideOver()
->infolist([...])
])


I have another resource that I want to call a getUrl() that points to the above list page and triggers the action so that the record's information slides over.
Is this possible?
Was this page helpful?