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

io.nosqlbench.driver.webdriver.verbs.FindElementInElementBy Maven / Gradle / Ivy

package io.nosqlbench.driver.webdriver.verbs;

import io.nosqlbench.driver.webdriver.WebContext;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;

public class FindElementInElementBy implements WebDriverVerb {
    private final By by;

    public FindElementInElementBy(By by) {
        this.by = by;
    }

    @Override
    public void execute(WebContext context) {
        WebElement element = context.peekElement().findElement(by);
        context.pushElement(element);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy