Sylius\Behat\Page\Admin\DashboardPageInterface::logOut PHP Method

logOut() public method

public logOut ( )
    public function logOut();

Usage Example

Example #1
0
 /**
  * @param string $username
  * @param string $password
  */
 private function logInAgain($username, $password)
 {
     $this->dashboardPage->logOut();
     $this->loginPage->open();
     $this->loginPage->specifyUsername($username);
     $this->loginPage->specifyPassword($password);
     $this->loginPage->logIn();
 }
All Usage Examples Of Sylius\Behat\Page\Admin\DashboardPageInterface::logOut