io.nosqlbench.driver.webdriver.verbs.FindElements Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-web Show documentation
Show all versions of driver-web Show documentation
A nosqlbench driver module;
Provides the ability to drive steps through the webdriver API.
package io.nosqlbench.driver.webdriver.verbs;
import io.nosqlbench.driver.webdriver.WebContext;
import org.openqa.selenium.By;
import org.openqa.selenium.NoSuchElementException;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
public class FindElements implements WebDriverVerb {
private final static Logger logger = LoggerFactory.getLogger(FindElements.class);
private final By by;
public FindElements(String by) {
this.by = Bys.get(by);
}
@Override
public void execute(WebContext context) {
try {
List elements = context.driver().findElements(by);
context.setElements(elements);
} catch (NoSuchElementException nsee) {
context.pushElement(null);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy