vendor/symfony/panther/src/ProcessManager/SeleniumManager.php line 45

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Panther project.
  4.  *
  5.  * (c) Kévin Dunglas <dunglas@gmail.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Symfony\Component\Panther\ProcessManager;
  12. use Facebook\WebDriver\Remote\DesiredCapabilities;
  13. use Facebook\WebDriver\Remote\RemoteWebDriver;
  14. use Facebook\WebDriver\WebDriver;
  15. use Facebook\WebDriver\WebDriverCapabilities;
  16. /**
  17.  * @author Dmitry Kuzmin <rockwith@me.com>
  18.  */
  19. final class SeleniumManager implements BrowserManagerInterface
  20. {
  21.     private $host;
  22.     private $capabilities;
  23.     private $options;
  24.     public function __construct(
  25.         ?string $host 'http://127.0.0.1:4444/wd/hub',
  26.         ?WebDriverCapabilities $capabilities null,
  27.         ?array $options = []
  28.     ) {
  29.         $this->host $host;
  30.         $this->capabilities $capabilities ?? DesiredCapabilities::chrome();
  31.         $this->options $options;
  32.     }
  33.     public function start(): WebDriver
  34.     {
  35.         return RemoteWebDriver::create(
  36.             $this->host,
  37.             $this->capabilities,
  38.             $this->options['connection_timeout_in_ms'] ?? null$this->options['request_timeout_in_ms'] ?? null
  39.         );
  40.     }
  41.     public function quit(): void
  42.     {
  43.         // nothing
  44.     }
  45. }