* @param elementId The id of the html element whose attribute will be set.
* @param attribute The attribute name.
* @param value The value to set.
*/
public SetAttributeAction(String elementId, String attribute, String value) {
super(new DefaultMatcher(elementId));
this.attribute = attribute;
this.value = value;
}