All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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