com.applitools.eyes.selenium.SeleniumJavaScriptExecutor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java3-jboss Show documentation
Show all versions of eyes-selenium-java3-jboss Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes.selenium;
import com.applitools.eyes.IEyesJsExecutor;
import com.applitools.eyes.selenium.wrappers.EyesWebDriver;
public class SeleniumJavaScriptExecutor implements IEyesJsExecutor {
private final EyesWebDriver driver;
public SeleniumJavaScriptExecutor(EyesWebDriver driver) {
this.driver = driver;
}
@Override
public Object executeScript(String script, Object... args) {
return this.driver.executeScript(script, args);
}
}