2 Feature: Delete comment block messages
3 In order to refine comment block's contents
5 In need to delete comments from courses
8 Scenario: Delete comments with Javascript enabled
9 Given the following "courses" exists:
10 | fullname | shortname | category |
12 And the following "users" exists:
13 | username | firstname | lastname | email |
14 | teacher1 | Teacher | First | teacher1@asd.com |
15 | student1 | Student | First | student1@asd.com |
16 And the following "course enrolments" exists:
17 | user | course | role |
18 | teacher1 | C1 | editingteacher |
19 | student1 | C1 | student |
20 And I log in as "teacher1"
21 And I follow "Course 1"
22 And I turn editing mode on
23 And I add the "Comments" block
25 And I log in as "student1"
26 And I follow "Course 1"
27 And I add "Comment from student1" comment to comments block
29 And I log in as "teacher1"
30 And I follow "Course 1"
31 And I add "Comment from teacher1" comment to comments block
32 When I delete "Comment from student1" comment from comments block
33 Then I should not see "Comment from student1"
34 And I delete "Comment from teacher1" comment from comments block
35 And I should not see "Comment from teacher1"