return enough;
}
@Test
public void verifyIndexHoversCorrect() {
State state = result.getStates().get("index");
assertThat(state, is(notNullValue()));
List<CandidateElementPosition> candidates = state.getCandidateElements();
assertThat("Number of hovers", candidates, hasSize(3));
Assume.assumeTrue(resolutionBigEnough);
assertThat(candidates, hasItem(element(new Point(48, 118), new Dimension(52, 16))));
assertThat(candidates, hasItem(element(new Point(48, 137), new Dimension(51, 16))));
assertThat(candidates, hasItem(element(new Point(48, 156), new Dimension(200, 16))));