diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2017-04-25 14:42:21 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2017-04-25 14:42:21 +0300 |
| commit | 1bf13f9ec7455558f777ab12315a536bf5ba79bc (patch) | |
| tree | 1b32c3a65f0a49d2a41b488b6b2bf75c2037f803 /tests/functional/basic.php | |
| parent | a7bb248ccfa6be68757b3a17b71ba05b7879716a (diff) | |
add test checking if all articles feed opens
Diffstat (limited to 'tests/functional/basic.php')
| -rw-r--r-- | tests/functional/basic.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/functional/basic.php b/tests/functional/basic.php index 38c25779e..19d9ca8d2 100644 --- a/tests/functional/basic.php +++ b/tests/functional/basic.php @@ -22,4 +22,11 @@ class BasicTest extends PHPUnit_Extensions_Selenium2TestCase { $this->byCssSelector('#feedTree')->displayed(); } + public function testOpenFeed() { + $this->testLogin(); + + $this->byCssSelector('#dijit__TreeNode_3')->click(); + + $this->byCssSelector('#RROW-1 > div.cdmHeader')->displayed(); + } } |