Handling CSRF prevention tokens / dynamic data in JMeter

In today’s web technologies a common defensive mechanism against csrf attacks is to use a synchronizer token. This token is unique for each request and thus it blocks us from using the recorded JMeter test session off the shelf. The solution is to identify and extract the token from the html form. Identification can be […]

Read more
Event logging with aspects in automated testing

One of the most important goals in automated testing is to identify when and why the errors are shown in the test cases. Logging is a useful tool to find the answers to these questions. However the implementation of a logger unit is not so easy in accordance with the object oriented principles. The aspect […]

Read more