I am using windows 7 and python 2.7
There is process-A.
process-B which is launched through custom url.
My app starts through process-A and it opens a webpage in browser. This page does necessary authentication of user and this finally redirect to a url which launches process-B through custom url aligned to it.
When process-B exits(either success or exception), then process-A should proceed further i.e. process-A should opens a webpage, then it should wait till process-B is finished, and then continue further.
So, how process-A know whether process-B is finished or not, i.e. how to define its waiting period.