Hi there,
I am evaluating your WebUI QA studio product.
It seems very handy and my question is how I can use Regular Express to verify content.
I found there is some icon 'Build Verification' with Regular Express, but i couldn't get it work.
Once you open the PDF file a simple search on "RegEx" will take you to the chapter on regular expression.
I can also tell you that WebUI Test Studio uses regular expressions the same way that they're used in the .Net Framework. What this means is that you can look at any .Net regex tutorials. Here is an example I found useful: http://support.microsoft.com/kb/308252
In this tutorial you can see an example:
Regex emailregex = new Regex("(?<user>[^@]+)@(?<host>.+)");
which is a regular expression obect used to describe an e-mail pattern. For instance: johndoe@tempuri.org
If you wanted to verify an e-mail link using WebUI Test Studio you can use the same regular expression in your regex verification: (?<user>[^@]+)@(?<host>.+)
In the same way you can reuse and learn from all .Net regex examples and tutorials that you find on the net.
I hope this answers your question, please don't hesitate to contact us again if you need more help. All the best,
Stoich
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items