New to Telerik Test Studio? Download free 30-day trial

Refresh DOM tree

Problem

There are elements against which I could record a step but the execution fails with an element not found exception.

Solution

Some elements in an application are loaded in the DOM dynamically during execution - good examples could be drop down menus items, tool tips, etc. This might cause the execution to fail since the dynamic elements are not present in the DOM tree when the page is loaded at first. They appear only after a certain action against the application (hover over, click on the drop down, etc.).

Very often in such situation refreshing the DOM after that particular action will allow the execution to go smoothly. There is no UI step for that though it could be easily obtained in a coded step. The only row of code you need to add is the following:

Manager.ActiveBrowser.RefreshDomTree();
Manager.ActiveBrowser.RefreshDomTree()
In this article