@Test(
      expectedExceptions = UnsupportedOperationException.class,
      groups = {"alfresco-one"},
      priority = 32)
  public void testGetContentNameFromInfoMenu() throws Exception {
    documentLibPage = resolvePage(driver).render();
    documentLibPage = documentLibPage.getSiteNav().selectDocumentLibrary().render();
    // Get File
    FileDirectoryInfo thisRow = documentLibPage.getFileDirectoryInfo(file.getName());

    thisRow.getContentNameFromInfoMenu();
  }