This question is locked. New answers and comments are not allowed.
I have a project file that can't buildand it was created automatically.
The type or namespace name 'HtmlElementContainer' could not be found (are you missing a using directive or an assembly reference?)
| public class GrantMakerPage : HtmlElementContainer |
| { |
| public MSDFGrantMakerPage(Find find) : |
| base(find) |
| { |
| } |
| /// <summary> |
| /// Find logic |
| /// (Html): [id 'Exact' ui_UserName_txt] AND [tagname 'Exact' input] |
| /// |
| /// </summary> |
| public ArtOfTest.WebAii.Controls.HtmlControls.HtmlInputText UiUserNameTxtText |
| { |
| get |
| { |
| return Get<ArtOfTest.WebAii.Controls.HtmlControls.HtmlInputText>("id=ui_UserName_txt", "tagname=input"); |
| } |
It's a new project and all of the Quick Executes seem to work fine.
It seems like ArtOfTest.WebAii.Controls.HtmlControls. should be Telerik.WebAii.Controls.HtmlControls.
Any Ideas?