Spinning off my earlier post about detecting which box is checked:
I realized I can use Check App State. I designate an image selector for the empty checkbox, and the label as the anchor also using image recognition. Initial tests appear reliable, and this is a simple solution. It’s not a big deal to make my code this static, as the form is always the same for this process and there aren’t that many checkboxes to detect.
Basically if the element is detected, the box is unchecked…and if the element is not detected then I assume it is checked. I can do a similar thing by looking for the blank underscore next to the label to determine if it is initialed or not.
So my question is, how accurate are image-based anchors and targets? Is it “smart” enough to understand that the physical positioning is what matters since it’s all images and there’s no underlying page structure (ie no real selectors)?
My next test is going to be with Computer Vision to see how reliably it identifies things.


