Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there tools that log user actions to help reproduce bugs? [closed]

As a test engineer, I often engage in exploratory testing. When I encounter a bug, it is not always immediately clear which steps led to the problem. So, obviously, I have to find the required steps to reproduce the problem. Depending on the situation, this can take a large amount of time.

What would be really helpful is a logging tool that keeps track of mouse and keyboard actions and possibly also stores the properties of components that have been clicked (the AUT is written in Java).

I could simply not find a suitable tool, but maybe my search approach is erroneous.

Could anyone point me to the right direction?

like image 788
Cedric Meury Avatar asked Oct 17 '08 13:10

Cedric Meury


1 Answers

This question lists tools that can be used test web applications. Some of the answers may be useful.

One for example is Selenium - a mozilla plugin that records your actions and can be replayed later.

like image 113
Vivek Kodira Avatar answered Sep 30 '22 18:09

Vivek Kodira