1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-08 01:14:24 +03:00
ifhub.club/application/tests/behat/features/comment.feature.incomplete

60 lines
1.5 KiB
Plaintext

Feature: Test Base comment functionality (!!!SELENIUM NEEDED)
Test base functionality of Comments
@mink:selenium2
Scenario: Adding the comment
Given I am on "/login"
Then I want to login as "admin"
Given I am on homepage
Given I am on "/blog/3.html"
Then I follow "Add comment"
And I fill in "test comment" for "comment_text"
And I press "Preview"
Then I wait "2000"
Then I should see in element by css "content .comment-preview" values:
| value |
| test comment |
And I press "Add"
Then I wait "1000"
Then I should see in element by css "content .comment-content" values:
| value |
| test comment |
Then I should see in element by css "content .comment-author" values:
| value |
| /profile/admin/">admin</a> |
Then I should see in element by css "content .comment-actions" values:
| value |
| Reply |
| Delete |
@mink:selenium2
Scenario: Reply for comment
Given I am on "/login"
Then I want to login as "admin"
Then I am on "/blog/gadgets/1.html"
Then I should see "fixture comment text"
Then I should see in element by css "content .comment-wrapper .comment-actions" values:
| value |
| Reply |
And I follow "Reply"
Then I wait "1000"
And I fill in "test subcomment" for "comment_text"
#Then print last response
And I press "Add"
Then I wait "1000"
Then I should see in element by css "#comment_content_id_2" values:
| value |
| test subcomment |