@Test(
      groups = {"alfresco-one"},
      priority = 2)
  public void test102ContentCheckBoxForFolder() throws Exception {
    // Get folder row
    FileDirectoryInfo thisRow = documentLibPage.getFileDirectoryInfo(folderName);
    String thisRowName = thisRow.getName();
    Assert.assertEquals(thisRowName, folderName);
    // Content CheckBox
    Assert.assertFalse(thisRow.isCheckboxSelected());
    thisRow.selectCheckbox();
    Assert.assertTrue(thisRow.isCheckboxSelected());

    // UnSelect
    thisRow.selectCheckbox();
    Assert.assertFalse(thisRow.isCheckboxSelected());
  }