I\'m currently trying to help automate some coded UI tests using C# for a web application. A frequent problem I\'m encountering is that it can be extremely difficult to det
Instead of using obj.Exists() we have coded our own exists method that uses a combination approach of EnsureClickable() and BoundingRectangle.Width>0 to make sure that the control has a screen point.
ETA- oops, sorry left off an important part. Updated to add .Width to make sure it's greater than 0, you may need to use length if you width is somehow not working.