我使用以下代码将我使用的配置文件加载到Selenium WebDriver中,但它没有导航到任何URL(在我看到我的书签时配置文件已正确加载)L。
$host = 'http://localhost:4444/wd/hub'; // this is the default
$capabilities = DesiredCapabilities::chrome();
$options = new ChromeOptions();
$options->addArguments(array(
'--user-data-dir=/home/sorin/.config/google-chrome',
));
$capabilities->setCapability(ChromeOptions::CAPABILITY, $options);
$driver = RemoteWebDriver::create($host, $capabilities, 15000);
$driver->get('https://www.google.ro/search?q=test');
我的版本是:
Chrome - 版本54.0.2840.71(64位)
ChromeDriver - 2.24
Selenium WebDriver - 3.4.0
代码在没有加载配置文件的情况下正常工作。
谢谢!