I need to clarify:
My hint was profiles was if you want to run several macros/browsers at the same time. This is not what you want. So you can ignore it.
You can to run several macros one after the other.
With imacros I can star unlimited macro
iimPlay(“macro1”);
iimPlay(“macro2”);
iimPlay(“macro3”);
Yes, and with Kantu you can do the exactly same. But you need a Powershell or Python (or similar) script for it. Example:
$result = PlayAndWait Macro1
$result = PlayAndWait Macro2
$result = PlayAndWait Macro3
You find the full example code here (this is line 74). “PlayAndWait” is a subroutine in the Powershell script that has the details of calling Kantu and waiting for the macro to complete.