// This will fail with PhantomJS
  @Test
  @Ignore // TODO: we need to fix this test for matching the correct id:geneQuery in selenium
  public void matchingGeneQueryTermsShouldBeHighlighted() throws InterruptedException {
    // given
    String tooltipContent = subject.getGenePropertyTooltipContent(0);

    // then
    assertThat(tooltipContent, containsString("ACTL7A"));
    List<String> highlightedTerms = subject.getGenePropertyTooltipHighlightedTerms(0);
    assertThat(highlightedTerms, hasItems("protein", "Actin-related protein"));
  }