private final Map<String, AugmenterProvider> augmentors =
new HashMap<String, AugmenterProvider>();
public Augmenter() {
addAugmentation(CapabilityType.TAKES_SCREENSHOT, new AddTakesScreenshot());
addAugmentation(CapabilityType.SUPPORTS_SQL_DATABASE, new AddDatabaseStorage());
addAugmentation(CapabilityType.SUPPORTS_LOCATION_CONTEXT, new AddLocationContext());
addAugmentation(CapabilityType.SUPPORTS_APPLICATION_CACHE, new AddApplicationCache());
addAugmentation(CapabilityType.SUPPORTS_BROWSER_CONNECTION, new AddBrowserConnection());
addAugmentation(CapabilityType.SUPPORTS_WEB_STORAGE, new AddWebStorage());
}