我正在尝试运行facebook/php-webdriver
包,但我被困在这个阶段。
它在我的本地主机中运行良好,但在我的 Ubuntu 服务器中,等待一段时间后我收到此错误
带有参数的 http POST 到 /session 引发的 curl 错误:{"desiredCapabilities":{"browserName":"firefox"}} 操作在 30001 毫秒后超时,收到 0 个字节
这就是我的代码的样子
$browser_type = 'chrome';
$host = 'http://localhost:4444/wd/hub'; // this is the default
$capabilities = array(\Facebook\WebDriver\Remote\WebDriverCapabilityType::BROWSER_NAME => $browser_type);
$driver = \Facebook\WebDriver\Remote\RemoteWebDriver::create($host, $capabilities);
$driver->get($setconnection);
$driver->get($setavail);
$cookie = $driver->manage()->getCookies();
$driver->close();
$cookie = reset($cookie);
$cookievalue = $cookie['value'];
基本上,我试图从这个请求中获取 cookievalue,任何人,请有一些解决方案!