Pega Robotics: How to Wait and proceed only when certain property changes
Hi,
I'm new to Pega robotics and I would like to know if this is possible.
Basically, I would like wait and proceed to next step only when the CSS property changes from "display: block" to "display: none". There's a message "Loading..." and it would like wait and go to next step when this message disappears on screen.
Sample HTML:
<div id="msgload" style="font-weight: bold; display: block;">Loading...</div>
<div id="msgload" style="font-weight: bold; display: none;">Loading...</div>
Thanks