WebDriver driverProxy = GrapheneProxy.getProxyForTargetWithInterfaces(context, driver, WebDriver.class);
GrapheneProxyInstance proxy = (GrapheneProxyInstance) driverProxy;
proxy.registerInterceptor(builtInterceptor);
driverProxy.findElement(by);
Mockito.inOrder(interceptor1, interceptor2);
verify(interceptor1).intercept(Mockito.any(InvocationContext.class));
verify(interceptor2).intercept(Mockito.any(InvocationContext.class));
}