public function FeatureContext::iLogOut in Open Social 8
Same name and namespace in other branches
- 8.2 tests/behat/features/bootstrap/FeatureContext.php \FeatureContext::iLogOut()
Log out.
@Given /^(?:|I )logout$/
File
- tests/
behat/ features/ bootstrap/ FeatureContext.php, line 699
Class
- FeatureContext
- Defines application features from the specific context.
Code
public function iLogOut() {
$page = '/user/logout';
$this
->visitPath($page);
}