使用PHP

时间:2017-05-08 06:59:59

标签: php selenium-webdriver phpunit remotewebdriver

我包含远程webdriver的路径来调用浏览器和其他功能。 现在我需要设置firefox配置文件功能,例如下载我需要直接保存文件而不是打开文件的文件。 我已经尝试过这样做,但它却抛出了这个错误。

"Fatal Error Class Facebook/Webdriver/FirefoxProfile not found in C:xampp/htdocs/zoho_ws/github/index.php  on line 14"

我知道我遗漏了一些头文件,但我仍然不知道如何包含它。我正在使用Facebook Webdriver来编写硒测试用例。 我需要设置浏览器功能,但是当我尝试执行这些代码时,它会给我错误。 *

<?php
// An example of using php-webdriver.
namespace Facebook\WebDriver;
use Facebook\WebDriver\Remote\DesiredCapabilities;
use Facebook\WebDriver\Remote\RemoteWebDriver;
//use Facebook\WebDriver\Firefox\FirefoxProfile;
require_once('vendor/autoload.php');
// start Firefox with 5 second timeout
/*//ORIGINAL CODE
$host = 'http://localhost:4444/wd/hub'; // this is the default
$capabilities = DesiredCapabilities::firefox();
$driver = RemoteWebDriver::create($host, $capabilities, 5000);*/
//ORIGINAL CODE ENDS HERE
$profile = new FirefoxProfile();
$profile->setPreference(
  'browser.startup.homepage',
  'https://github.com/facebook/php-webdriver/'
);
$caps = DesiredCapabilities::firefox();
$caps->setCapability(FirefoxDriver::PROFILE, $profile);
$driver = RemoteWebDriver::create($url, $caps);
// navigate to 'http://docs.seleniumhq.org/'
//$driver->get('https://www.google.co.in/?gfe_rd=cr&ei=aRELWZKeOrDy8Aep3LyIBw');
// adding cookie
$driver->manage()->deleteAllCookies();
$driver->manage()->addCookie([
    'name' => 'cookie_name',
    'value' => 'cookie_value',
]);
$cookies = $driver->manage()->getCookies();
//print_r($cookies);
// click the link 'About'
//input[@name='q']
/*$input = $driver->findElement(
    WebDriverBy::name('q')
);
$input->sendKeys('php')->submit();*/
//button[contains(.,'Export All')]
$driver->get('https://my.ecwid.com/cp/');

任何人都可以帮我设置firefox功能吗?

*

0 个答案:

没有答案