diff --git a/src/Tests/SeleniumChromeTest.php b/src/Tests/SeleniumChromeTest.php new file mode 100644 index 0000000..3eb79d2 --- /dev/null +++ b/src/Tests/SeleniumChromeTest.php @@ -0,0 +1,17 @@ +setBrowser('chrome'); + $this->setBrowserUrl('http://google.com/'); + } + + public function testTitle() + { + $this->url('http://www.google.com/'); + $this->assertContains('Google', $this->title()); + } + +} \ No newline at end of file