If you want to view all tests changes, you can do that from Site Administration as follows:
From Site Administration (must have Site Admin permissions) goto Site Projects tab
*Select the project in question and click the + sign to expand the view of the tables
*Run the following query from the Audit_Log table
*Replace the default query SELECT * FROM AUDIT_LOG with
*SELECT * FROM AUDIT_LOG where au_entity_type = 'test'
*The list of items returned will include all tests, the date, and the user
To add changes to the Test Steps add an OR condition to the WHERE clause such that the query is as follows:
SELECT * FROM AUDIT_LOG where au_entity_type = 'test' or au_entity_type = 'DESSTEPS'
*If export of data is required, run the above query from SQL Query and export data (DBA assistance for this is required)