Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Hi team,
We are doing POC for one of our wpf application.
Can you please give me the method or properties which verify wpf window is loaded or not and should return true /false.
Thank you,
Assert.IsNotNull(ActiveApplication.WaitForWindow(
"your next window name"
));
Hi Nikolay,
Thanks for a reply.
In the above statement, assert basically stops the current test case execution if window is not loaded,
But I wanted to try something if window is not loaded wait for 2 more sec and then continue till window is loaded.
ActiveApplication.WaitForWindow(
"yourWindowsCaption"
, 30000);