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

com.epam.healenium.handlers.SelfHealingHandler Maven / Gradle / Ivy

The newest version!
package com.epam.healenium.handlers;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

import java.util.List;

public interface SelfHealingHandler {

    WebElement findElement(By by);

    List findElements(By by);

    WebElement wrapElement(WebElement element, ClassLoader loader);

    WebDriver.TargetLocator wrapTarget(WebDriver.TargetLocator locator, ClassLoader loader);

    void quit();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy