File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 5
5
use Codeception \Module ;
6
6
use Dachcom \Codeception \Util \EditableHelper ;
7
7
use Dachcom \Codeception \Util \FileGeneratorHelper ;
8
+ use GuzzleHttp \Client ;
8
9
9
10
class WebDriver extends Module \WebDriver
10
11
{
@@ -24,17 +25,18 @@ public function amOnPageInEditMode(string $page)
24
25
public function setDownloadPathForWebDriver ($ path = null )
25
26
{
26
27
if (is_null ($ path )) {
27
- $ path = FileGeneratorHelper::getDownloadPath ();
28
+ $ path = FileGeneratorHelper::getWebdriverDownloadPath ();
28
29
}
29
30
30
31
$ 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
+
32
34
$ body = [
33
35
'cmd ' => 'Page.setDownloadBehavior ' ,
34
36
'params ' => ['behavior ' => 'allow ' , 'downloadPath ' => $ path ]
35
37
];
36
38
37
- $ client = new \ GuzzleHttp \ Client ();
39
+ $ client = new Client ();
38
40
$ response = $ client ->post ($ url . $ uri , ['body ' => json_encode ($ body )]);
39
41
40
42
try {
Original file line number Diff line number Diff line change @@ -56,6 +56,16 @@ public static function getDownloadPath()
56
56
return codecept_data_dir () . 'downloads ' . DIRECTORY_SEPARATOR ;
57
57
}
58
58
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
+
59
69
public static function cleanUp ()
60
70
{
61
71
$ finder = new Finder ();
You can’t perform that action at this time.
0 commit comments