Hello,
I am trying to automate the construction of a site with its number plans and outbound routes.
Although I can do it, I must wait ( around 2 seconds ) between the creation of the site and the creation of a number plan. So the steps are something like this:
- Create site
- Wait 2 seconds (Thread.sleep(2000))
- Create Number Plan
- Create Outbound Route
I want to ask if the time I have to wait is mandatory or if I am doing something wrong with my implementation.