![JAR search and dependency download from the Maven repository](/logo.png)
org.cauli.ui.selenium.element.Link Maven / Gradle / Ivy
package org.cauli.ui.selenium.element;
import org.cauli.ui.selenium.browser.IBrowser;
public class Link extends CauliElement {
public Link(IBrowser browser) {
super(browser);
}
public Link(IBrowser browser, String location) {
super(browser, location);
}
public String getHref(){
return this.getAttribute("href");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy