Let me give you an example of what I'm talking about and what I'm trying to accomplish:
There are places in several of our Keyword Tests where we test and manipulate On/Off toggles. So, the way the tests are written, we'll start with an If...Then that says "If this toggle is set to off, then click it to turn it on" to make sure that the toggle always starts out being set to On each time the test runs. Then, we do an On Screen Action and use the Click method to set the toggle to Off. Then, we insert a property checkpoint to make sure that the toggle is set to Off. There's a checkbox (that is hidden and not visible onscreen) that is hooked into the toggle. We've found that the easiest way to implement the checkpoint is by checking the checked property for that checkbox (if the checkbox is checked, that means the toggle is set to On, and if the checkbox is unchecked, that means the toggle is set to Off), but the problem that we're having is that it is taking anywhere from 30 to 40 seconds for TC to find that hidden checkbox and seeing if it's checked or unchecked.
I'm hoping that there's a way to cut that time down to something like 15 seconds or 20 seconds (If we could cut it down even more, that would be great too). We're going through and optimizing tests, and we'd very much like to trim off that extra unnecessary time that it's taking TC to find things that aren't onscreen.