Example #1
0
 /**
  * Returns the configured Selenium RC browser starting URL.
  *
  * This functions returns the TYPO3_SITE_URL if no URL is configured.
  *
  * @return string Selenium RC Browser URL, will not be empty
  */
 protected function getSeleniumBrowserUrl()
 {
     return $this->extensionSettingsService->hasString('selenium_browserurl') ? $this->extensionSettingsService->getAsString('selenium_browserurl') : rtrim(t3lib_div::getIndpEnv('TYPO3_SITE_URL'), self::DEFAULT_SELENIUM_BROWSER_URL);
 }
Example #2
0
 /**
  * Returns the configured Selenium RC browser starting URL.
  *
  * This functions returns the TYPO3_SITE_URL if no URL is configured.
  *
  * @return string Selenium RC Browser URL, will not be empty
  */
 public function getSeleniumBrowserUrl()
 {
     return $this->extensionSettingsService->hasString('selenium_browserurl') ? $this->extensionSettingsService->getAsString('selenium_browserurl') : rtrim(GeneralUtility::getIndpEnv('TYPO3_SITE_URL'), '/');
 }