/**
  * @test
  */
 public function toWikiText_ScreenLoaded_HelpTextShouldPrint()
 {
     echo $this->gcPage->toWikiHelp();
     // 		echo implode("", $this->gcPage->toWikiHelpFilters('1'));
     $this->driver->setScreenShotsDirectory($this->cfg->baseURI . "/tests/system/tmp");
     foreach ($this->gcPage->tabs as $tab) {
         $this->gcPage->selectTab($tab);
         $this->helpScreenshot('test-' . $tab . '.png', $this->cfg->baseURI . "/tests/system/tmp");
     }
 }
 /**
  * @test
  */
 public function getTabIds_ScreenLoaded_TabIdsShouldEqualExpected()
 {
     $textArray = $this->gcPage->getTabIds();
     $this->assertEquals($this->gcPage->tabs, $textArray, 'Tab labels should match expected values.');
 }