I have a application that uses an external service via a cookie set to my applications domain. During development I create this cookie by hand but in production this cookie would be generated via a login. Is there any way to use the cookie I set during development before I run my tests for this external service?
I have a guess that I can use curl to automate this a little but I was wondering if I missing some hidden feature or technique in PHPUnit and/or Selenium.
[class extending PHPUnit_Extensions_SeleniumTestCase]
/**
* Can get the current authenticated user.
*/
public function testCanGetTheCurrentAuthenticatedUser()
{
$this->open('http://my/local/virtual/host/api/getCurrentUser');
$json = json_decode($this->getBodyText());
$this->assertEquals('25', $json->response->id);
}