Partial Attributes Search by Control Type Fails
PROBLEM
A partial search of control by attribute may return null even with correct partial search syntax. For example a HtmlInputButton search on the page having a complex ID containing some specific string should be located successfully using the following syntax:
HtmlInputButton button = Find.ById<HtmlInputButton>("~MyButtonIDPart");
Although the next example works:
HtmlInputButton button = Find.ById<HtmlInputButton>("SomeButtonIDPart_MyButtonIDPart");
DESCRIPTION
The framework locates the first element matching the given attribute search criteria. Next, it compares the control type of the element and returns that element if the control type matches. If it does not, it simply returns null.
In the first example, the framework returns null if there is another element that matches the given attribute search criteria and it is found before the target element. The control type does not match.
Solution
A simple solution is available. Use Find.AllByAttributes
HtmlInputButton button = Find.AllByAttributes<HtmlInputButton>("id=~MyButtonIDPart")[0];