I'm using Silk Test Workbench 17.0, .NET script.
I have a control to enter a time in mm:ss format.
When I record, I get:
.Control("00 00").Click(MouseButton.Left, New Point(5, 10))
.Control("00 00").TypeKeys("<#0><#2>:<#1><#5>")
where "00 00" is the current value of the control.
I want to change this so it will work for any current value.
I read that there is some way to use the label before the control to identify it, but I can't find any examples that show how to do this.