mirror of
https://github.com/joomla-extensions/weblinks.git
synced 2024-12-25 17:51:07 +00:00
Fix reference to old selenium task
This commit is contained in:
parent
685435e87d
commit
683168e8e4
17
RoboFile.php
17
RoboFile.php
@ -444,23 +444,18 @@ class RoboFile extends \Robo\Tasks
|
||||
*/
|
||||
public function runSelenium()
|
||||
{
|
||||
if (!$this->isWindows())
|
||||
{
|
||||
$this->_exec("vendor/bin/selenium-server-standalone " . $this->getWebDriver() . ' >> selenium.log 2>&1 &');
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->_exec('START java.exe -jar' . $this->getWebDriver() .
|
||||
' vendor\joomla-projects\selenium-server-standalone\bin\selenium-server-standalone.jar ');
|
||||
}
|
||||
|
||||
if ($this->isWindows())
|
||||
{
|
||||
// TODO: Move this logic to the selenium standalone server task in the parent joomla repo
|
||||
$this->_exec('START java.exe -jar' . $this->getWebDriver() .
|
||||
' vendor\joomla-projects\selenium-server-standalone\bin\selenium-server-standalone.jar ');
|
||||
sleep(3);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->taskWaitForSeleniumStandaloneServer()
|
||||
$this->taskSeleniumStandaloneServer()
|
||||
->runSelenium()
|
||||
->waitForSelenium()
|
||||
->run()
|
||||
->stopOnFail();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user