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

com.sdl.selenium.bootstrap.button.ButtonLink Maven / Gradle / Ivy

Go to download

Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications. (optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)

The newest version!
package com.sdl.selenium.bootstrap.button;

import com.sdl.selenium.web.SearchType;
import com.sdl.selenium.web.WebLocator;

public class ButtonLink extends Button {

    public ButtonLink() {
        setClassName("ButtonLink");
        setBaseCls("btn");
        setTag("a");
    }

    /**
     * @param container parent's element
     */
    public ButtonLink(WebLocator container) {
        this();
        setContainer(container);
    }

    public ButtonLink(WebLocator container, String text) {
        this(container);
        setText(text);
        setSearchTextType(SearchType.EQUALS);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy