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

aquality.selenium.elements.RadioButton Maven / Gradle / Ivy

There is a newer version: 4.9.0
Show newest version
package aquality.selenium.elements;

import aquality.selenium.core.elements.ElementState;
import aquality.selenium.elements.interfaces.IRadioButton;
import org.openqa.selenium.By;

/**
 * Class describing the Radiobutton
 */
public class RadioButton extends CheckableElement implements IRadioButton {

    protected RadioButton(final By locator, final String name, final ElementState state) {
        super(locator, name, state);
    }

    protected String getElementType() {
        return getLocalizationManager().getLocalizedMessage("loc.radio");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy