Blog

Entries in LoadRunner (3)

Sunday
Nov252012

C - Remove/Replace Characters in a String

When I needed to remove/replace characters in a string, I posted a question here on stackoverflow.

I have used the strstr function in a loop, but was looking for a simpler solution. A C implementation equivalent to the C# String.Replace method might work.

Click to read more ...

Sunday
Jul222012

SQUID - Handling Compound Data

For simple data in SQUID, you can call SquidRetrieveData and save the result into a parameter. This parameter can then be used throughout your script. Things get a bit more complicated if your data is comprised of multiple parameter values. A common example of this is user name and password.

Let us explore 2 techniques to solve this problem in your scripts.

Click to read more ...

Wednesday
Jun202012

SQUID - "The specified module could not be found"

A user recently brought the following error to my attention (thanks Nicole!). Running the example script lr_squid_simple produced this error.

Dependency Walker was run to help detect problems with missing modules, invalid modules, import/export mismatches, circular dependency errors, mismatched machine types of modules and module initialization failures.

Click to read more ...