'firefox'); $this->webDriver = RemoteWebDriver::create('http://localhost:4444/wd/hub', $capabilities); } public function tearDown() { $this->webDriver->close(); } protected $url = 'http://www.netbeans.org/'; public function testSimple() { $this->webDriver->get($this->url); // checking that page title contains word 'NetBeans' $this->assertContains('NetBeans', $this->webDriver->getTitle()); } }