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

How to Verify Tooltips in Silverlight

Verifying Silverlight tooltips sometimes can be tricky. First we must understand that tooltips are attached to elements and Test Studio has the ability to verify what the tooltip is that is attached to a specific element. We don't try to get the tooltip element itself and verify the tooltip contents, because a tooltip is just a property of the Silverlight UI element for which the tooltip is intended to be displayed.

One other small hurdle is that in order to verify a tooltip, it must first appear in the Silverlight Visual Tree, which is Microsoft's internal representation of the Silverlight application UI. The first trick is to Invoke a Mouse Hover event. By hovering the mouse over the element, it causes the tooltip to appear in the UI, which also adds it to the Visual Tree. Once it appears you can try to add a tooltip verification of your UI element.

In some cases, just highlighting the UI element in the recorder and adding a tooltip verification doesn't work as expected.

Highlight

The problem is that the tooltip is being applied to the parent RatingItem element and not the child Grid or TextBlock elements. To further complicate things, we can't simply find the RatingItem element in the DOM Explorer and try to use the Sentence Verification Builder to create a tooltip verification. You can find the RatingItem element in DOM Explorer, but Test Studio won't be able to build a tooltip verification for it.

Instead we have to resort to code to perform our tooltip verification. First add the RatingItem element to the Project Elements.

1.  Highlight the element. 2.  Click Locate in DOM. 3.  Highlight the parent RatingItem element and ensure it matches on the page.

Locate in DOM

4.  Right click the element in the DOM and select Add to Project Elements.

Now we have an element reference we can use in a coded step. Next add a coded step as follows:

FrameworkElement elem = Pages.SilverlightToolkitSamples.SilverlightApp.AmusedRatingitem;

string actualTip = elem.ToolTipText;

Log.WriteLine(actualTip);

Assert.AreEqual<string>("Amused", actualTip);
Dim elem As FrameworkElement = Pages.SilverlightToolkitSamples.SilverlightApp.AmusedRatingitem

Dim actualTip As String = elem.ToolTipText

Log.WriteLine(actualTip)

Assert.AreEqual(Of String)("Amused", actualTip)
In this article