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

net.serenitybdd.core.pages.FluentDropdownDeselect Maven / Gradle / Ivy

There is a newer version: 4.2.8
Show newest version
package net.serenitybdd.core.pages;

public class FluentDropdownDeselect extends FluentDropdown {

    public FluentDropdownDeselect(WebElementFacade webElementFacade) {
       super(webElementFacade);
    }

    public void byVisibleText(String text) {
        deselectByVisibleText(text);
    }

    public void byIndex(int index) {
        deselectByIndex(index);
    }

    public void byValue(String value) {
        deselectByValue(value);
    }

    public void all() {
        deselectAll();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy