Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is it possible to create 2 robot application instances?
Let's say in the code I want to have two robot application running parallel and do different things.
In Python, I tried:
robot1 = win32.DispatchEx("Robot.Application")
robot2 = win32.DispatchEx("Robot.Application")
which works with cases that tries to open Excel, but not with Robot. The two instances point to the same Robot application.
I also tried in VB, but since I'm not familiar, I'm not sure if I did it correctly.
I also tried to manually open a new robot application, but all of them points to one.
Solved! Go to Solution.