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

io.magentys.cinnamon.webdriver.collections.SizeGreaterThanCondition Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
package io.magentys.cinnamon.webdriver.collections;

import io.magentys.cinnamon.webdriver.conditions.Condition;
import org.openqa.selenium.WebElement;

import java.util.List;

public class SizeGreaterThanCondition extends Condition> {

    private final int size;

    public SizeGreaterThanCondition(final int size) {
        this.size = size;
    }

    @Override
    public boolean apply(List elements) {
        return elements.size() > size;
    }

    @Override
    public String toString() {
        return "size greater than: " + size;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy