Chrome 无头 Ubuntu
Chrome headless in Ubuntu
我正在尝试使用 chrome headless print to pdf 选项在 ubuntu 中打印一些 pdf 文件,这是我的命令行:
google-chrome --headless --disable-gpu --print-to-pdf http://www.google.com
现在,如果我 运行 它会完美运行并生成文件。
BUT 当我在 --print-to-pdf 之后添加文件名时:
google-chrome --headless --disable-gpu --print-to-pdf gen.pdf http://www.google.com
发生错误:
[1213/020159.194304:ERROR:headless_shell.cc(605)] Open multiple tabs is only supported when remote debugging is enabled.
有什么解决办法吗?谢谢
您在 --print-to-pdf
和 gen.pdf
之间缺少一个 =
。
这应该有效:
google-chrome --headless --disable-gpu --print-to-pdf=gen.pdf http://www.google.com
问过类似问题
我正在尝试使用 chrome headless print to pdf 选项在 ubuntu 中打印一些 pdf 文件,这是我的命令行:
google-chrome --headless --disable-gpu --print-to-pdf http://www.google.com
现在,如果我 运行 它会完美运行并生成文件。
BUT 当我在 --print-to-pdf 之后添加文件名时:
google-chrome --headless --disable-gpu --print-to-pdf gen.pdf http://www.google.com
发生错误:
[1213/020159.194304:ERROR:headless_shell.cc(605)] Open multiple tabs is only supported when remote debugging is enabled.
有什么解决办法吗?谢谢
您在 --print-to-pdf
和 gen.pdf
之间缺少一个 =
。
这应该有效:
google-chrome --headless --disable-gpu --print-to-pdf=gen.pdf http://www.google.com
问过类似问题