From a35405e9e26062b72902c842dd20878c4092a031 Mon Sep 17 00:00:00 2001 From: Sabine Miehlbradt Date: Fri, 15 Jul 2016 17:40:34 +0200 Subject: [PATCH] added Test class for chrome --- src/Tests/SeleniumChromeTest.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/Tests/SeleniumChromeTest.php 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