I'm trying to create two CANoe instances using Python (win32com module).
I'm trying to create two objects and open the configurations, but it creates only one instance. How can I achieve creating two CANoe instances?
I disabled the option in the application which was to permit only one instance (I am able to open two CANoe instances manually).
application = win32com.client.DispatchEx("CANoe.Application")
application.Open(config)
application2 = win32com.client.DispatchEx("CANoe.Application")
application2.Open(config2)