assertFalse( entryEditorBot.getAttributeValues().contains( "description: This is the 3rd description." ) );
assertContains( "delete: description\ndescription: This is the 3rd description.", modificationLogsViewBot
.getModificationLogsText() );
// edit 1st value
entryEditorBot.editValue( "description", "This is the 1st description." );
entryEditorBot.typeValueAndFinish( "This is the final description." );
assertEquals( 9, entryEditorBot.getAttributeValues().size() );
assertFalse( entryEditorBot.getAttributeValues().contains( "description: This is the 1st description." ) );
assertTrue( entryEditorBot.getAttributeValues().contains( "description: This is the final description." ) );
assertContains( "replace: description\ndescription: This is the final description.", modificationLogsViewBot