com.googlecode.openbox.webui.obj.ContainsAttribute 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 ContainsAttribute extends Attribute {
public ContainsAttribute(String name, String value) {
super(name, value);
}
public static Attribute create(String name, String value) {
return new ContainsAttribute(name, value);
}
public String toString(){
return "contains(@"+getName()+",'"+getValue()+"')";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy