Skip to content

Commit

Permalink
added Test class for chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
s-miehlbradt committed Jul 15, 2016
1 parent 29eec8b commit a35405e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Tests/SeleniumChromeTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

class SeleniumChromeTest extends PHPUnit_Extensions_Selenium2TestCase
{
protected function setUp()
{
$this->setBrowser('chrome');
$this->setBrowserUrl('http://google.com/');
}

public function testTitle()
{
$this->url('http://www.google.com/');
$this->assertContains('Google', $this->title());
}

}

0 comments on commit a35405e

Please sign in to comment.