@Target(value=TYPE) @Inherited @Retention(value=RUNTIME) public @interface ManualJavaScriptInterface
@ManualJavaScriptInterface
public interface ManualSomething{
String getSecret();
}
public class SomethingImpl implements ManualSomething{
@Autowired
private WebDriver webDriver;
public String getSecret(){
...
}
}
@JavaScript(...)
public interface Something extends ManualSomething{
}
Copyright © 2016. All rights reserved.