Chris@14: getSession(); Chris@17: $session->start(); Chris@14: Chris@14: $windowNames = $session->getWindowNames(); Chris@14: $this->assertArrayHasKey(0, $windowNames); Chris@14: Chris@17: $windowName = $session->getWindowName(); Chris@14: Chris@17: $this->assertInternalType('string', $windowName); Chris@17: $this->assertContains($windowName, $windowNames, 'The current window name is one of the available window names.'); Chris@14: } Chris@14: }