Skip to content

Instantly share code, notes, and snippets.

@tonini
Created May 6, 2013 06:20
Show Gist options
  • Save tonini/5523613 to your computer and use it in GitHub Desktop.
Save tonini/5523613 to your computer and use it in GitHub Desktop.
public function test_admin_login()
{
$password = 'admin';
$admin = AdminFactory::create(["password" => $password]);
$this->visit("/admin");
$this->fillField("_username", $admin->getUsername());
$this->fillField("_password", 'admin');
$this->pressButton('Anmelden');
$this->assertContains("Abmelden", $this->getPageContent());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment