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
This can be done in a Coded Step. You'll reference the extracted variable in code, convert it to a string, and use the String.Substring Method to trim it. (That method is basic .NET code and not specific to Test Studio.) Here's an example:
object
webTime = GetExtractedValue(
"Time"
);
string
extractMe = webTime.ToString();
Log.WriteLine(extractMe);
int
n = extractMe.IndexOf(
"at "
) + 3;
extractMe = extractMe.Substring(n);
LOG: Monday, June 18, 2012 at 2:57:38 PM
LOG: 2:57:38 PM