Hi Mark,
Some websites have different layers of elements. Many a times, the blueprism interacts onl with the upper layer of GUI whereas in those, it is required to fill data in backhand layers too. So try using Global Send Keys for those text boxes o...
Yes, you can work on multiple screens at the same time. Try attaching different windows with different titles and then you can work by switching each window by activating that particular instance.
Use the below vb-script code to press Numlock every defined minute. It will keep the system awake.
set wsc = CreateObject(""WScript.Shell"")
Do
'Five minutes
WScript.Sleep(X*60*1000)
wsc.SendKeys(""{NUMLOCK}"")
Loop
Define X as 1 or more.