ISSUE:
Within the Test Studio's UI, you can reuse extracted values for veriftions. Instructions here:
http://www.telerik.com/automated-testing-tools/support/documentation/user-guide/verifications/data-bind-an-extraction-step.aspx
REQUEST:
Please provide a way to use string builder in data driven tests without having to use coded steps, like:
// Verify 'InnerText' 'Contains' 'Hi, Daniel Clark' on 'HiSpan' - DataDriven: [$(Name)]
Pages.TelerikNETUIControls.HiSpan.AssertContent()
.InnerText(ArtOfTest.Common.StringCompareType.Contains,
(String.Format("Hi, {0}", (string)(System.Convert.ChangeType(Data["Name"], typeof(string))))));