We have an ASP.Net site that redirects you to a url that shows a session-id. like this:
This id is unique with every request.
Is it possible to test this site using a standard visual studio 2008/2010 webtest? How can I provide the test this data?
I have to call a couple of different pages using that same id.
Yes, it is relatively easy to do this. You will need to create a coded webtest however.
In my example we have a login post that will return the url including the session string. Just after the we yield the login post request (request3) to the enumerator I call the following.
Where GetUrlCookie is something like this:
Once you have the session cookie string, you can substitute it really easy in any subsequent urls for request/post e.g.
I apologise for my code being so rough, but it was deprecated in my project and is pulled from the first version of the codebase - and for saying it was easy :)
For any load testing, depending on your application, you may have to come up with a stored procedure to call to provide distinct login information each time the test is run.
Note, because the response url cannot be determined ahead of time, for the login post you will have to temporarily turn off the urlValidationEventHandler. To do this I store the validationruleeventhandler in a local variable:
So can then turn it on and off as I require:
The alternative is to code your own such as this (reflectored from the Visual Studio code and changed to be case insensitive.