diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-01-30 11:50:52 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-01-30 11:50:52 +0100 |
commit | a2a1f8d7ed2911c2a4bab05ae599a80ed690c9c4 (patch) | |
tree | 7d672ba4833b53c0d24e51985f15a81fa8d1b8b7 /tests/Selenium/Logout.php | |
parent | cbaf7a2fb001fb52c32c1d30e46d52d29b420350 (diff) |
Added automated in-browser tests (PHPUnit + Selenium Web Driver)
Diffstat (limited to 'tests/Selenium/Logout.php')
-rw-r--r-- | tests/Selenium/Logout.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/Selenium/Logout.php b/tests/Selenium/Logout.php new file mode 100644 index 000000000..95eeda57c --- /dev/null +++ b/tests/Selenium/Logout.php @@ -0,0 +1,20 @@ +<?php + +class Selenium_Logout extends Selenium_Test +{ + public function testLogout() + { + $this->go('mail'); + + $this->click_button('logout'); + + sleep(TESTS_SLEEP); + + // task should be set to 'login' + $env = $this->get_env(); + $this->assertEquals('login', $env['task']); + + // form should exist + $user_input = $this->byCssSelector('form input[name="_user"]'); + } +} |