PHP Fatal error: Uncaught Error: Class 'Facebook\WebDriver\ChromeOptions' not found

PHP Fatal error: Uncaught Error: Class 'Facebook\WebDriver\ChromeOptions' not found

namespace Facebook\WebDriver;

use Facebook\WebDriver\Remote\DesiredCapabilities;
use Facebook\WebDriver\Remote\RemoteWebDriver;

require_once('vendor/autoload.php');

$host = 'http://localhost:4444/wd/hub';

$options = new ChromeOptions();

我在创建 class ChromeOptions 的对象时阅读了这个 link 得到错误

PHP Fatal error: Uncaught Error: Class 'Facebook\WebDriver\ChromeOptions' not found.

试试这个。

$options = new Chrome\ChromeOptions();

添加

use Facebook\WebDriver\Chrome\ChromeOptions;

到顶部。