What should I do to get the key of a cloned web page control after waiting for its creation? Currently the automation is throwing an exception “Key has not been registered”.
@ThaoP932 The best way to do this is to use a Signal along with the Created event for the page (or whatever object has UseKeys enabled). WaitForEvent technically requires a key, so it isn’t ideal in this situation where the key for the next page is unknown.
The way I do this is to use the Created event to record the key for the page just created to a variable that is global in scope. Then I call the Signal after. The Signal must be global in scope as well.

