Example #1
0
 public String getLocation() {
   return driver.getLocation(this);
 }
Example #2
0
 public List<ElementScope> findAllXPath(String xpath, Options options) {
   setOptions(options);
   return AlreadyFound(driver.findAllXPath(xpath, this));
 }
Example #3
0
 public String executeScript(String javascript) {
   return driver.executeScript(javascript, this);
 }
Example #4
0
 public List<ElementScope> findAllCss(String cssSelector, Options options) {
   setOptions(options);
   return AlreadyFound(driver.findAllCss(cssSelector, this));
 }