private void assertValidAnnotations() {
FindBys grapheneFindBys = field.getAnnotation(FindBys.class);
org.openqa.selenium.support.FindBys webDriverFindBys = field.getAnnotation(org.openqa.selenium.support.FindBys.class);
FindBy webDriverFindBy = field.getAnnotation(FindBy.class);
org.jboss.arquillian.graphene.enricher.findby.FindBy grapheneFindBy = field
.getAnnotation(org.jboss.arquillian.graphene.enricher.findby.FindBy.class);
if ((grapheneFindBys != null || webDriverFindBys != null) && (webDriverFindBy != null || grapheneFindBy != null)) {