com.googlecode.openbox.webui.obj.Attribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of webui Show documentation
Show all versions of webui Show documentation
This is WebDriver based webUI test framework
package com.googlecode.openbox.webui.obj;
public class Attribute {
private String name;
private String value;
public Attribute(String name, String value) {
this.name = name;
this.value = value;
}
public static Attribute create(String name, String value) {
return new Attribute(name, value);
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
public String toString(){
return "@"+getName()+"='"+getValue()+"'";
}
}