Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Here is an example of a coded step that waits for the button having the id "Button1" to become enabled:
HtmlInputButton btn = Find.ById<HtmlInputButton>(
"Button1"
);
Wait.For<HtmlInputButton>(c => c.BaseElement.OuterMarkup.Contains(
"disabled"
), btn,
true
, 10000);