Hello,
I'm currently looking into Kendo-UI and found information that Telerik provides a .NET abstraction layer for it's UI components to be used in Web Tests.
https://www.telerik.com/blogs/automated-testing-of-kendo-ui-made-easy
For instance:
I'm currently looking into Kendo-UI and found information that Telerik provides a .NET abstraction layer for it's UI components to be used in Web Tests.
https://www.telerik.com/blogs/automated-testing-of-kendo-ui-made-easy
For instance:
using Telerik.TestingFramework.Controls.KendoUI.Angular; using Telerik.TestingFramework.Controls.KendoUI.Angular.Grid;
KendoAngularGrid grid = Manager.ActiveBrowser.Frames[0].Find.AllByTagName<KendoAngularGrid>("kendo-grid").FirstOrDefault();
Now, for my question:
Is the c# library that provides this
abstraction layer (Telerik.TestingFramework.Controls.KendoUI.Angular)
also available as a NuGet package and if so, where can I find them? This
would be important when setting up dependencies and controlling the
build chain in a modern setup.
Thanks, Michael