Created
November 24, 2010 00:49
-
-
Save rogeriopvl/712882 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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