public String getLocation() { return driver.getLocation(this); }
public List<ElementScope> findAllXPath(String xpath, Options options) { setOptions(options); return AlreadyFound(driver.findAllXPath(xpath, this)); }
public String executeScript(String javascript) { return driver.executeScript(javascript, this); }
public List<ElementScope> findAllCss(String cssSelector, Options options) { setOptions(options); return AlreadyFound(driver.findAllCss(cssSelector, this)); }