Skip to content

Commit

Permalink
Remove extra Directory Separator from ChromeProcess (#995)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoSot authored Sep 2, 2022
1 parent ec89035 commit 7b4e00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Chrome/ChromeProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function toProcess(array $arguments = [])
'win' => 'chromedriver-win.exe',
];

$driver = __DIR__.'/../../bin/'.DIRECTORY_SEPARATOR.$filenames[$this->operatingSystemId()];
$driver = __DIR__.'/../../bin'.DIRECTORY_SEPARATOR.$filenames[$this->operatingSystemId()];
}

$this->driver = realpath($driver);
Expand Down

0 comments on commit 7b4e00c

Please sign in to comment.