diff --git a/features/bootstrap/FeatureContext.php b/features/bootstrap/FeatureContext.php
index 9ad4dc6..93bed4c 100644
--- a/features/bootstrap/FeatureContext.php
+++ b/features/bootstrap/FeatureContext.php
@@ -1896,7 +1896,7 @@ class FeatureContext extends MinkContext {
         $i++;
       }
     }
-    throw new Exception("No checkboxes were selected on the page");
+    throw new Exception("Not all '" . $count . "' checkboxes were selected on the page");
   }
 
   /**
diff --git a/features/drupalorg/user_admin_comments.feature b/features/drupalorg/user_admin_comments.feature
new file mode 100644
index 0000000..8eecfde
--- /dev/null
+++ b/features/drupalorg/user_admin_comments.feature
@@ -0,0 +1,112 @@
+Feature: To get administrative view of comments by a user
+  In order to manage comments
+  As an admin user
+  I should be able to view the list and filter them
+
+  Background:
+    Given I am logged in as "admin test"
+    And I follow "Administer comments"
+
+  Scenario: View the list of items
+    Then I should see at least "1" records
+    And I should see the following <texts>
+    | texts      |
+    | Title      |
+    | Node title |
+    | Comment    |
+    | Post date  |
+    | Operations |
+    | Published  |
+    And I should see the following <links>
+    | links  |
+    | View   |
+    | Edit   |
+    | edit   |
+    | delete |
+
+  Scenario: Navigate to an item
+    When I follow a post
+    Then I should see the link "Edit"
+    And I should see the link "View"
+    And I should see the heading "Comments"
+    And I should not see "Page not found"
+    And I should not see "Access denied"
+
+  Scenario: Check for Edit link
+    When I follow "edit" for a post
+    Then I should see "Subject:"
+    And I should see "Comment:"
+
+  Scenario: Check for Delete link
+    When I follow "delete"
+    Then I should see "Are you sure you want to delete the comment"
+    And I should see "Any replies to this comment will be lost. This action cannot be undone"
+    And I should see "Delete"
+    And I should see the link "Cancel"
+
+  @javascript
+  Scenario: Select dropdown: This page
+    When I select "All (this page)" from field "Select..."
+    And all the checkboxes are selected
+    And I press "Delete comment"
+    Then I should see "You selected"
+    And I should see "rows"
+    And I should see the link "Cancel"
+
+  @javascript
+  Scenario: Select dropdown: All pages
+    When I select "All (all pages)" from field "Select..."
+    And all the checkboxes are selected
+    And I press "Delete comment"
+    Then I should see "You selected all"
+    And I should see "rows in this view"
+    And I should see the link "Cancel"
+
+  @javascript
+  Scenario: Select dropdown: None
+    When I select "All (all pages)" from field "Select..."
+    And all the checkboxes are selected
+    And I select "None" from field "Select..."
+    Then none the checkboxes are selected
+
+  Scenario: Unpublish comment: Dont select
+    When I press "Unpublish comment"
+    Then I should see "No row selected. Please select one or more rows"
+    And I should not see "Performed Unpublish comment on comment"
+
+  @javascript
+  Scenario: Unpublish comment: Cancel
+    When I check "2" checkboxes to "unpublish"
+    And I press "Unpublish comment"
+    And I follow "Cancel"
+    Then I should not see "Performed Unpublish comment on comment"
+
+  Scenario: Check for Delete: Dont select
+    When I press "Delete comment"
+    Then I should see "No row selected. Please select one or more rows"
+    And I should not see "This action cannot be undone"
+    And I should not see "has been deleted"
+
+  @javascript
+  Scenario: Delete comments: Cancel
+    When I check "2" checkboxes to "delete"
+    And I press "Delete comment"
+    And I follow "Cancel"
+    Then I should not see "has been deleted"
+
+  @javascript
+  Scenario: Unpublish comments: Confirm
+    When I check "2" checkboxes to "unpublish"
+    And I press "Unpublish comment"
+    And I press "Confirm"
+    And I wait "10" seconds
+    Then I should see "Performed Unpublish comment on comment"
+
+  @javascript
+  Scenario: Delete comments: Confirm
+    When I check "2" checkboxes to "delete"
+    And I press "Delete comment"
+    And I press "Confirm"
+    And I wait "10" seconds
+    Then I should see "Performed Delete comment on comment"
