SearchContext接口

package org.openqa.selenium;
import java.util.List;

public interface SearchContext {

List<WebElement> findElements(By by);

WebElement findElement(By by);
}

你可能感兴趣的:(SearchContext接口)