Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Created November 24, 2010 00:49
Show Gist options
  • Save rogeriopvl/712882 to your computer and use it in GitHub Desktop.
Save rogeriopvl/712882 to your computer and use it in GitHub Desktop.
<?php
require_once 'PHPUnit/Extensions/SeleniumTestCase.php';
class seleniumExampleTest extends PHPUnit_Extensions_SeleniumTestCase
{
protected function setUp()
{
$this->setBrowser('*firefox');
$this->setBrowserUrl('http://www.google.com.au/');
}
function testMyTestCase()
{
$this->open('http://www.google.com.au/');
$this->type('q', 'zend framework');
$this->click('btnG');
$this->waitForPageToLoad('30000');
try {
$this->assertTrue($this->isTextPresent('framework.zend.com/'));
} catch (PHPUnit_Framework_AssertionFailedError $e) {
array_push($this->verificationErrors, $e->toString());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment