Created
January 13, 2013 16:11
-
-
Save stevesmename/4524858 to your computer and use it in GitHub Desktop.
phpunit and selenium test not working.
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 | |
class TestLogin extends PHPUnit_Extensions_Selenium2TestCase { | |
public function setUp() { | |
$this->setHost('localhost'); | |
$this->setPort(4444); | |
$this->setBrowser('firefox'); | |
$this->setBrowseUrl(''); | |
} | |
public function testHasLoginForm(){ | |
$this->url('http://www.stevesmename.com'); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment