- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-24-2017 03:07 AM
hi all,
The record delete step in automated test framework , is not actually deleting records, but in the test result log it shows as record has been deleted.
Also, we can see records deleted in deleted records.
any clue why the records are not getting deleted from the table.
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2017 08:35 PM
This is because ATF uses a rollback feature after each Test. Any insert/update/delete that occurs during the Test is reverted to the state it was in before the Test.
So, the record was deleted by the Test, but then restored by the rollback feature.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-11-2017 08:35 PM
This is because ATF uses a rollback feature after each Test. Any insert/update/delete that occurs during the Test is reverted to the state it was in before the Test.
So, the record was deleted by the Test, but then restored by the rollback feature.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-12-2017 03:41 AM
Thanks for response!