Skip to content

Commit

Permalink
Driver not found bug fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Modelizer committed Sep 13, 2016
1 parent 95c14aa commit 0d5299c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/BootSelenium.php
Expand Up @@ -68,7 +68,7 @@ protected function getWebDriver($driverName)
{
$os = @$this->os[mb_strtolower(PHP_OS)];
$extension = $os == 'win' ? 'exe' : '';
$driver = static::prependPackagePath("drivers/$os-$driverName.$extension");
$driver = static::prependPackagePath('drivers/'.$os.'-'.$driverName.$extension);

if (!is_file($driver)) {
$this->error(ucfirst($os).' driver file is not available.');
Expand Down

0 comments on commit 0d5299c

Please sign in to comment.