Blame view

vendor/facebook/webdriver/lib/Chrome/ChromeDriver.php 2.9 KB
ad2e91f7   Mihail   move multyparser ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  <?php
  // Copyright 2004-present Facebook. All Rights Reserved.
  //
  // Licensed under the Apache License, Version 2.0 (the "License");
  // you may not use this file except in compliance with the License.
  // You may obtain a copy of the License at
  //
  //     http://www.apache.org/licenses/LICENSE-2.0
  //
  // Unless required by applicable law or agreed to in writing, software
  // distributed under the License is distributed on an "AS IS" BASIS,
  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  // See the License for the specific language governing permissions and
  // limitations under the License.
  
  namespace Facebook\WebDriver\Chrome;
  
  use Facebook\WebDriver\Remote\DesiredCapabilities;
  use Facebook\WebDriver\Remote\DriverCommand;
  use Facebook\WebDriver\Remote\Service\DriverCommandExecutor;
  use Facebook\WebDriver\Exception\WebDriverException;
  use Facebook\WebDriver\Remote\RemoteWebDriver;
  use Facebook\WebDriver\Remote\WebDriverCommand;
  
  class ChromeDriver extends RemoteWebDriver {
  
    public static function start(
      DesiredCapabilities $desired_capabilities = null,
      ChromeDriverService $service = null
    ) {
      if ($desired_capabilities === null) {
        $desired_capabilities = DesiredCapabilities::chrome();
      }
      if ($service === null) {
        $service = ChromeDriverService::createDefaultService();
      }
      $executor = new DriverCommandExecutor($service);
      $driver = new static();
      $driver->setCommandExecutor($executor)
             ->startSession($desired_capabilities);
      return $driver;
    }
  
    public function startSession($desired_capabilities) {
      $command = new WebDriverCommand(
        null,
        DriverCommand::NEW_SESSION,
        array(
          'desiredCapabilities' => $desired_capabilities->toArray(),
        )
      );
      $response = $this->executor->execute($command);
      $this->setSessionID($response->getSessionID());
    }
  
    /**
     * Always throws an exception. Use ChromeDriver::start() instead.
     *
     * @param string              $url                  The url of the remote server
     * @param DesiredCapabilities $desired_capabilities The desired capabilities
     * @param int|null            $timeout_in_ms
     * @param int|null            $request_timeout_in_ms
     *
     * @throws WebDriverException
     */
    public static function create(
      $url = 'http://localhost:4444/wd/hub',
      $desired_capabilities = null,
      $timeout_in_ms = null,
      $request_timeout_in_ms = null
    ) {
      throw new WebDriverException('Please use ChromeDriver::start() instead.');
    }
  
    /**
     * Always throws an exception. Use ChromeDriver::start() instead.
     *
     * @param string $session_id The existing session id
     * @param string $url        The url of the remote server
     *
     * @throws WebDriverException
     */
    public static function createBySessionID(
      $session_id,
      $url = 'http://localhost:4444/wd/hub'
    ) {
      throw new WebDriverException('Please use ChromeDriver::start() instead.');
    }
  }