Lines Matching defs:driver
18 protected $driver;
22 public function __construct(RemoteExecuteMethod $executor, RemoteWebDriver $driver, $isW3cCompliant = false)
25 $this->driver = $driver;
37 return $this->driver;
75 return $this->driver;
81 * @return RemoteWebDriver This driver focused on the parent frame
87 return $this->driver;
104 return $this->driver;
108 * Creates a new browser window and switches the focus for future commands of this driver to the new window.
112 * The created window is not guaranteed to be of the requested type; if the driver does not support the requested
113 * type, a new browser window will be created of whatever type the driver does support.
115 * @return RemoteWebDriver This driver focused on the given window
131 return $this->driver;
144 $response = $this->driver->execute(DriverCommand::GET_ACTIVE_ELEMENT, []);
145 $method = new RemoteExecuteMethod($this->driver);