PHP Fatal error: Uncaught
FacebookWebDriverExceptionWebDriverCurlException: Curl error thrown for
http POST to /session with params: {"desiredCapabilities":
{"browserName":"chrome","platform":"ANY"}}
我收到此错误。Platform Linux,OS Ubuntu 16.04。Php 脚本:
require_once '/var/www/html/vendor/autoload.php';
$host = 'http://127.0.0.1:4444/wd/hub';
$driver = FacebookWebDriverRemoteRemoteWebDriver::create($host,
FacebookWebDriverRemoteDesiredCapabilities::firefox());
print_r($driver);
我已经安装了谷歌浏览器最新版本和 chromedriver 最新版本的 linux 64。
我用这段代码运行硒:
DISPLAY=:99 xvfb-run -a -n 1 -l -s "-screen 0, 1024x768x8" java -Dwebdriver.chrome.driver="/var/www/html/chromedriver-linux" -jar /var/www/html/selenium-server.jar
我修复了错误:
$options = new
FacebookWebDriverChromeChromeOptions();
$options->addArguments(array(
'--no-sandbox',
));
此外,我将 webdriver 更改为 2.29,并将其放入具有可执行权限的/usr/local/bin 中。
我将运行 Xvfb 更改为
Xvfb :99 -screen 0 1280x1024x24 -ac &
比
export DISPLAY=:99 && java -Dwebdriver.chrome.driver="/usr/local/bin/chromedriver-229" -jar /usr/local/bin/selenium-server.jar
现在,它工作得很好。