Rebol / Red 在 Windows 上调用 Headless Chrome
Rebol / Red calling Headless Chrome on Windows
在Dos命令中截屏,可以使用(参见https://developers.google.com/web/updates/2017/04/headless-chrome):
chrome --screenshot="C:\test\test.png" "http://google.com" --headless --disable-gpu
在 Rebol 中,我只能使用 powershell -command:
call {powershell -command "chrome --screenshot='C:\test\test.png' 'http://google.com' --headless --disable-gpu"}
红色的我根本无法让它工作,我错过了什么吗?
如果您使用完整路径,此版本适用于最新版本
>> call "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --screenshot=c:\test\test.png https://www.google.com --headless --disable-gpu"
== 1932
在Dos命令中截屏,可以使用(参见https://developers.google.com/web/updates/2017/04/headless-chrome):
chrome --screenshot="C:\test\test.png" "http://google.com" --headless --disable-gpu
在 Rebol 中,我只能使用 powershell -command:
call {powershell -command "chrome --screenshot='C:\test\test.png' 'http://google.com' --headless --disable-gpu"}
红色的我根本无法让它工作,我错过了什么吗?
如果您使用完整路径,此版本适用于最新版本
>> call "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --screenshot=c:\test\test.png https://www.google.com --headless --disable-gpu"
== 1932