holmos.webtest.element.Link Maven / Gradle / Ivy
package holmos.webtest.element;
/**
* @author 吴银龙([email protected])
* */
public class Link extends Element{
public Link(String comment) {
super(comment);
}
public String getHref(){
return this.getAttribute("href");
}
}