Commit 1b51e691df180a2610aa465228e2cdf6e4a0737b
1 parent
5204c62a
Exists in
master
and in
28 other branches
Fixed test: features/send_email_to_organization_members.feature
Showing
1 changed file
with
5 additions
and
5 deletions
Show diff stats
features/send_email_to_organization_members.feature
... | ... | @@ -33,7 +33,7 @@ Feature: send emails to organization members |
33 | 33 | And I go to Sample Community's members management |
34 | 34 | And I follow "Send e-mail to members" |
35 | 35 | And I fill in "Subject" with "Hello, member!" |
36 | - And I fill in "body" with "We have some news" | |
36 | + And I fill in "Body" with "We have some news" | |
37 | 37 | When I press "Send" |
38 | 38 | Then I should be on Sample Community's members management |
39 | 39 | |
... | ... | @@ -41,7 +41,7 @@ Feature: send emails to organization members |
41 | 41 | Given I am logged in as "joaosilva" |
42 | 42 | And I go to Sample Community's members management |
43 | 43 | And I follow "Send e-mail to members" |
44 | - And I fill in "body" with "We have some news" | |
44 | + And I fill in "Body" with "We have some news" | |
45 | 45 | When I press "Send" |
46 | 46 | Then I should be on /profile/sample-community/send_mail |
47 | 47 | |
... | ... | @@ -68,19 +68,19 @@ Feature: send emails to organization members |
68 | 68 | Scenario: Show button "Send e-Mail to members" of community to an moderator |
69 | 69 | Given I am logged in as "jose" |
70 | 70 | When I go to Sample Community's members page |
71 | - Then I should see "Send e-mail to members" link | |
71 | + Then I should see "Send e-mail to members" | |
72 | 72 | |
73 | 73 | Scenario: Not show button "Send e-Mail to members" if user has no right permission |
74 | 74 | Given I am logged in as "manoel" |
75 | 75 | When I go to Sample Community's members page |
76 | - Then I should not see "Send e-mail to members" link | |
76 | + Then I should not see "Send e-mail to members" | |
77 | 77 | |
78 | 78 | Scenario: Redirect back to profile members page after send mail |
79 | 79 | Given I am logged in as "jose" |
80 | 80 | When I go to Sample Community's members page |
81 | 81 | And I follow "Send e-mail to members" |
82 | 82 | And I fill in "Subject" with "Hello, member!" |
83 | - And I fill in "body" with "We have some news" | |
83 | + And I fill in "Body" with "We have some news" | |
84 | 84 | When I press "Send" |
85 | 85 | Then I should be on Sample Community's members page |
86 | 86 | ... | ... |