-
I have a use case where I need to test 2 apps interleaving a workflow at the same time. Now, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, this does not seem to be possible directly, but there may be ways to do it: It seems that two apps are isolated (e.g. two processes), so the code in one app cannot execute the code in another app directly. However, if you manage to make them communicate (e.g. via interprocess communication, a dummy web server, or whatever), you can drive another app from the (test) code of one app. |
Beta Was this translation helpful? Give feedback.
Hi, this does not seem to be possible directly, but there may be ways to do it: It seems that two apps are isolated (e.g. two processes), so the code in one app cannot execute the code in another app directly. However, if you manage to make them communicate (e.g. via interprocess communication, a dummy web server, or whatever), you can drive another app from the (test) code of one app.