This is my workaround for a Triple Click command.
In Power Automate:
RunApplication 'TripleClick.exe'
AutoIT program TripleClick.exe
#cs ----------------------------------------------------------------------------
Script Function:
Triple click the current mouse position
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
$pos = MouseGetPos()
MouseClick("left", $pos[0], $pos[1], 3, 200)
MouseClick() function above will click 3 times with a 200ms delay between each click.
Not sure if Microsoft will allow this post for suggesting use of freeware software.