Skip to content

Commit c18859a

Browse files
committed
improve webdriver download path config
1 parent c35d080 commit c18859a

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

src/_support/Helper/Browser/WebDriver.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
use Codeception\Module;
66
use Dachcom\Codeception\Util\EditableHelper;
77
use Dachcom\Codeception\Util\FileGeneratorHelper;
8+
use GuzzleHttp\Client;
89

910
class WebDriver extends Module\WebDriver
1011
{
@@ -24,17 +25,18 @@ public function amOnPageInEditMode(string $page)
2425
public function setDownloadPathForWebDriver($path = null)
2526
{
2627
if (is_null($path)) {
27-
$path = FileGeneratorHelper::getDownloadPath();
28+
$path = FileGeneratorHelper::getWebdriverDownloadPath();
2829
}
2930

3031
$url = $this->webDriver->getCommandExecutor()->getAddressOfRemoteServer();
31-
$uri = '/session/' . $this->webDriver->getSessionID() . '/chromium/send_command';
32+
$uri = sprintf('/session/%s/chromium/send_command', $this->webDriver->getSessionID());
33+
3234
$body = [
3335
'cmd' => 'Page.setDownloadBehavior',
3436
'params' => ['behavior' => 'allow', 'downloadPath' => $path]
3537
];
3638

37-
$client = new \GuzzleHttp\Client();
39+
$client = new Client();
3840
$response = $client->post($url . $uri, ['body' => json_encode($body)]);
3941

4042
try {

src/_support/Util/FileGeneratorHelper.php

+10
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,16 @@ public static function getDownloadPath()
5656
return codecept_data_dir() . 'downloads' . DIRECTORY_SEPARATOR;
5757
}
5858

59+
/**
60+
* @return string
61+
*/
62+
public static function getWebdriverDownloadPath()
63+
{
64+
return getenv('WEBDRIVER_DOWNLOAD_PATH') !== false
65+
? getenv('WEBDRIVER_DOWNLOAD_PATH')
66+
: codecept_data_dir() . 'downloads' . DIRECTORY_SEPARATOR;
67+
}
68+
5969
public static function cleanUp()
6070
{
6171
$finder = new Finder();

0 commit comments

Comments
 (0)