vendor/php-webdriver/webdriver/lib/Remote/DesiredCapabilities.php line 194

Open in your IDE?
  1. <?php
  2. namespace Facebook\WebDriver\Remote;
  3. use Exception;
  4. use Facebook\WebDriver\Chrome\ChromeOptions;
  5. use Facebook\WebDriver\Firefox\FirefoxDriver;
  6. use Facebook\WebDriver\Firefox\FirefoxOptions;
  7. use Facebook\WebDriver\Firefox\FirefoxProfile;
  8. use Facebook\WebDriver\WebDriverCapabilities;
  9. use Facebook\WebDriver\WebDriverPlatform;
  10. class DesiredCapabilities implements WebDriverCapabilities
  11. {
  12.     /** @var array */
  13.     private $capabilities;
  14.     /** @var array */
  15.     private static $ossToW3c = [
  16.         WebDriverCapabilityType::PLATFORM => 'platformName',
  17.         WebDriverCapabilityType::VERSION => 'browserVersion',
  18.         WebDriverCapabilityType::ACCEPT_SSL_CERTS => 'acceptInsecureCerts',
  19.         ChromeOptions::CAPABILITY => ChromeOptions::CAPABILITY_W3C,
  20.     ];
  21.     public function __construct(array $capabilities = [])
  22.     {
  23.         $this->capabilities $capabilities;
  24.     }
  25.     public static function createFromW3cCapabilities(array $capabilities = [])
  26.     {
  27.         $w3cToOss array_flip(self::$ossToW3c);
  28.         foreach ($w3cToOss as $w3cCapability => $ossCapability) {
  29.             // Copy W3C capabilities to OSS ones
  30.             if (array_key_exists($w3cCapability$capabilities)) {
  31.                 $capabilities[$ossCapability] = $capabilities[$w3cCapability];
  32.             }
  33.         }
  34.         return new self($capabilities);
  35.     }
  36.     /**
  37.      * @return string The name of the browser.
  38.      */
  39.     public function getBrowserName()
  40.     {
  41.         return $this->get(WebDriverCapabilityType::BROWSER_NAME'');
  42.     }
  43.     /**
  44.      * @param string $browser_name
  45.      * @return DesiredCapabilities
  46.      */
  47.     public function setBrowserName($browser_name)
  48.     {
  49.         $this->set(WebDriverCapabilityType::BROWSER_NAME$browser_name);
  50.         return $this;
  51.     }
  52.     /**
  53.      * @return string The version of the browser.
  54.      */
  55.     public function getVersion()
  56.     {
  57.         return $this->get(WebDriverCapabilityType::VERSION'');
  58.     }
  59.     /**
  60.      * @param string $version
  61.      * @return DesiredCapabilities
  62.      */
  63.     public function setVersion($version)
  64.     {
  65.         $this->set(WebDriverCapabilityType::VERSION$version);
  66.         return $this;
  67.     }
  68.     /**
  69.      * @param string $name
  70.      * @return mixed The value of a capability.
  71.      */
  72.     public function getCapability($name)
  73.     {
  74.         return $this->get($name);
  75.     }
  76.     /**
  77.      * @param string $name
  78.      * @param mixed $value
  79.      * @return DesiredCapabilities
  80.      */
  81.     public function setCapability($name$value)
  82.     {
  83.         // When setting 'moz:firefoxOptions' from an array and not from instance of FirefoxOptions, we must merge
  84.         // it with default FirefoxOptions to keep previous behavior (where the default preferences were added
  85.         // using FirefoxProfile, thus not overwritten by adding 'moz:firefoxOptions')
  86.         // TODO: remove in next major version, once FirefoxOptions are only accepted as object instance and not as array
  87.         if ($name === FirefoxOptions::CAPABILITY && is_array($value)) {
  88.             $defaultOptions = (new FirefoxOptions())->toArray();
  89.             $value array_merge($defaultOptions$value);
  90.         }
  91.         $this->set($name$value);
  92.         return $this;
  93.     }
  94.     /**
  95.      * @return string The name of the platform.
  96.      */
  97.     public function getPlatform()
  98.     {
  99.         return $this->get(WebDriverCapabilityType::PLATFORM'');
  100.     }
  101.     /**
  102.      * @param string $platform
  103.      * @return DesiredCapabilities
  104.      */
  105.     public function setPlatform($platform)
  106.     {
  107.         $this->set(WebDriverCapabilityType::PLATFORM$platform);
  108.         return $this;
  109.     }
  110.     /**
  111.      * @param string $capability_name
  112.      * @return bool Whether the value is not null and not false.
  113.      */
  114.     public function is($capability_name)
  115.     {
  116.         return (bool) $this->get($capability_name);
  117.     }
  118.     /**
  119.      * @todo Remove in next major release (BC)
  120.      * @deprecated All browsers are always JS enabled except HtmlUnit and it's not meaningful to disable JS execution.
  121.      * @return bool Whether javascript is enabled.
  122.      */
  123.     public function isJavascriptEnabled()
  124.     {
  125.         return $this->get(WebDriverCapabilityType::JAVASCRIPT_ENABLEDfalse);
  126.     }
  127.     /**
  128.      * This is a htmlUnit-only option.
  129.      *
  130.      * @param bool $enabled
  131.      * @throws Exception
  132.      * @return DesiredCapabilities
  133.      * @see https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities#read-write-capabilities
  134.      */
  135.     public function setJavascriptEnabled($enabled)
  136.     {
  137.         $browser $this->getBrowserName();
  138.         if ($browser && $browser !== WebDriverBrowserType::HTMLUNIT) {
  139.             throw new Exception(
  140.                 'isJavascriptEnabled() is a htmlunit-only option. ' .
  141.                 'See https://github.com/SeleniumHQ/selenium/wiki/DesiredCapabilities#read-write-capabilities.'
  142.             );
  143.         }
  144.         $this->set(WebDriverCapabilityType::JAVASCRIPT_ENABLED$enabled);
  145.         return $this;
  146.     }
  147.     /**
  148.      * @todo Remove side-effects - not change eg. ChromeOptions::CAPABILITY from instance of ChromeOptions to an array
  149.      * @return array
  150.      */
  151.     public function toArray()
  152.     {
  153.         if (isset($this->capabilities[ChromeOptions::CAPABILITY]) &&
  154.             $this->capabilities[ChromeOptions::CAPABILITY] instanceof ChromeOptions
  155.         ) {
  156.             $this->capabilities[ChromeOptions::CAPABILITY] =
  157.                 $this->capabilities[ChromeOptions::CAPABILITY]->toArray();
  158.         }
  159.         if (isset($this->capabilities[FirefoxOptions::CAPABILITY]) &&
  160.             $this->capabilities[FirefoxOptions::CAPABILITY] instanceof FirefoxOptions
  161.         ) {
  162.             $this->capabilities[FirefoxOptions::CAPABILITY] =
  163.                 $this->capabilities[FirefoxOptions::CAPABILITY]->toArray();
  164.         }
  165.         if (isset($this->capabilities[FirefoxDriver::PROFILE]) &&
  166.             $this->capabilities[FirefoxDriver::PROFILE] instanceof FirefoxProfile
  167.         ) {
  168.             $this->capabilities[FirefoxDriver::PROFILE] =
  169.                 $this->capabilities[FirefoxDriver::PROFILE]->encode();
  170.         }
  171.         return $this->capabilities;
  172.     }
  173.     /**
  174.      * @return array
  175.      */
  176.     public function toW3cCompatibleArray()
  177.     {
  178.         $allowedW3cCapabilities = [
  179.             'browserName',
  180.             'browserVersion',
  181.             'platformName',
  182.             'acceptInsecureCerts',
  183.             'pageLoadStrategy',
  184.             'proxy',
  185.             'setWindowRect',
  186.             'timeouts',
  187.             'strictFileInteractability',
  188.             'unhandledPromptBehavior',
  189.         ];
  190.         $ossCapabilities $this->toArray();
  191.         $w3cCapabilities = [];
  192.         foreach ($ossCapabilities as $capabilityKey => $capabilityValue) {
  193.             // Copy already W3C compatible capabilities
  194.             if (in_array($capabilityKey$allowedW3cCapabilitiestrue)) {
  195.                 $w3cCapabilities[$capabilityKey] = $capabilityValue;
  196.             }
  197.             // Convert capabilities with changed name
  198.             if (array_key_exists($capabilityKeyself::$ossToW3c)) {
  199.                 if ($capabilityKey === WebDriverCapabilityType::PLATFORM) {
  200.                     $w3cCapabilities[self::$ossToW3c[$capabilityKey]] = mb_strtolower($capabilityValue);
  201.                     // Remove platformName if it is set to "any"
  202.                     if ($w3cCapabilities[self::$ossToW3c[$capabilityKey]] === 'any') {
  203.                         unset($w3cCapabilities[self::$ossToW3c[$capabilityKey]]);
  204.                     }
  205.                 } else {
  206.                     $w3cCapabilities[self::$ossToW3c[$capabilityKey]] = $capabilityValue;
  207.                 }
  208.             }
  209.             // Copy vendor extensions
  210.             if (mb_strpos($capabilityKey':') !== false) {
  211.                 $w3cCapabilities[$capabilityKey] = $capabilityValue;
  212.             }
  213.         }
  214.         // Convert ChromeOptions
  215.         if (array_key_exists(ChromeOptions::CAPABILITY$ossCapabilities)) {
  216.             if (array_key_exists(ChromeOptions::CAPABILITY_W3C$ossCapabilities)) {
  217.                 $w3cCapabilities[ChromeOptions::CAPABILITY_W3C] = new \ArrayObject(
  218.                     array_merge_recursive(
  219.                         (array) $ossCapabilities[ChromeOptions::CAPABILITY],
  220.                         (array) $ossCapabilities[ChromeOptions::CAPABILITY_W3C]
  221.                     )
  222.                 );
  223.             } else {
  224.                 $w3cCapabilities[ChromeOptions::CAPABILITY_W3C] = $ossCapabilities[ChromeOptions::CAPABILITY];
  225.             }
  226.         }
  227.         // Convert Firefox profile
  228.         if (array_key_exists(FirefoxDriver::PROFILE$ossCapabilities)) {
  229.             // Convert profile only if not already set in moz:firefoxOptions
  230.             if (!array_key_exists(FirefoxOptions::CAPABILITY$ossCapabilities)
  231.                 || !array_key_exists('profile'$ossCapabilities[FirefoxOptions::CAPABILITY])) {
  232.                 $w3cCapabilities[FirefoxOptions::CAPABILITY]['profile'] = $ossCapabilities[FirefoxDriver::PROFILE];
  233.             }
  234.         }
  235.         return $w3cCapabilities;
  236.     }
  237.     /**
  238.      * @return static
  239.      */
  240.     public static function android()
  241.     {
  242.         return new static([
  243.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::ANDROID,
  244.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANDROID,
  245.         ]);
  246.     }
  247.     /**
  248.      * @return static
  249.      */
  250.     public static function chrome()
  251.     {
  252.         return new static([
  253.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::CHROME,
  254.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANY,
  255.         ]);
  256.     }
  257.     /**
  258.      * @return static
  259.      */
  260.     public static function firefox()
  261.     {
  262.         $caps = new static([
  263.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::FIREFOX,
  264.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANY,
  265.         ]);
  266.         $caps->setCapability(FirefoxOptions::CAPABILITY, new FirefoxOptions()); // to add default options
  267.         return $caps;
  268.     }
  269.     /**
  270.      * @return static
  271.      */
  272.     public static function htmlUnit()
  273.     {
  274.         return new static([
  275.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::HTMLUNIT,
  276.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANY,
  277.         ]);
  278.     }
  279.     /**
  280.      * @return static
  281.      */
  282.     public static function htmlUnitWithJS()
  283.     {
  284.         $caps = new static([
  285.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::HTMLUNIT,
  286.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANY,
  287.         ]);
  288.         return $caps->setJavascriptEnabled(true);
  289.     }
  290.     /**
  291.      * @return static
  292.      */
  293.     public static function internetExplorer()
  294.     {
  295.         return new static([
  296.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::IE,
  297.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::WINDOWS,
  298.         ]);
  299.     }
  300.     /**
  301.      * @return static
  302.      */
  303.     public static function microsoftEdge()
  304.     {
  305.         return new static([
  306.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::MICROSOFT_EDGE,
  307.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::WINDOWS,
  308.         ]);
  309.     }
  310.     /**
  311.      * @return static
  312.      */
  313.     public static function iphone()
  314.     {
  315.         return new static([
  316.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::IPHONE,
  317.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::MAC,
  318.         ]);
  319.     }
  320.     /**
  321.      * @return static
  322.      */
  323.     public static function ipad()
  324.     {
  325.         return new static([
  326.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::IPAD,
  327.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::MAC,
  328.         ]);
  329.     }
  330.     /**
  331.      * @return static
  332.      */
  333.     public static function opera()
  334.     {
  335.         return new static([
  336.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::OPERA,
  337.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANY,
  338.         ]);
  339.     }
  340.     /**
  341.      * @return static
  342.      */
  343.     public static function safari()
  344.     {
  345.         return new static([
  346.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::SAFARI,
  347.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANY,
  348.         ]);
  349.     }
  350.     /**
  351.      * @deprecated PhantomJS is no longer developed and its support will be removed in next major version.
  352.      * Use headless Chrome or Firefox instead.
  353.      * @return static
  354.      */
  355.     public static function phantomjs()
  356.     {
  357.         return new static([
  358.             WebDriverCapabilityType::BROWSER_NAME => WebDriverBrowserType::PHANTOMJS,
  359.             WebDriverCapabilityType::PLATFORM => WebDriverPlatform::ANY,
  360.         ]);
  361.     }
  362.     /**
  363.      * @param string $key
  364.      * @param mixed $value
  365.      * @return DesiredCapabilities
  366.      */
  367.     private function set($key$value)
  368.     {
  369.         $this->capabilities[$key] = $value;
  370.         return $this;
  371.     }
  372.     /**
  373.      * @param string $key
  374.      * @param mixed $default
  375.      * @return mixed
  376.      */
  377.     private function get($key$default null)
  378.     {
  379.         return isset($this->capabilities[$key])
  380.             ? $this->capabilities[$key]
  381.             : $default;
  382.     }
  383. }