Lines Matching refs:this

35         $this->executor = $executor;
36 $this->isW3cCompliant = $isW3cCompliant;
46 if ($this->isW3cCompliant) {
47 $moveAction = $where ? [$this->createMoveAction($where)] : [];
48 $this->executor->execute(DriverCommand::ACTIONS, [
54 'actions' => array_merge($moveAction, $this->createClickActions()),
59 return $this;
62 $this->moveIfNeeded($where);
63 $this->executor->execute(DriverCommand::CLICK, [
67 return $this;
77 if ($this->isW3cCompliant) {
78 $moveAction = $where ? [$this->createMoveAction($where)] : [];
79 $this->executor->execute(DriverCommand::ACTIONS, [
99 return $this;
102 $this->moveIfNeeded($where);
103 $this->executor->execute(DriverCommand::CLICK, [
107 return $this;
117 if ($this->isW3cCompliant) {
118 $clickActions = $this->createClickActions();
119 $moveAction = $where === null ? [] : [$this->createMoveAction($where)];
120 $this->executor->execute(DriverCommand::ACTIONS, [
131 return $this;
134 $this->moveIfNeeded($where);
135 $this->executor->execute(DriverCommand::DOUBLE_CLICK);
137 return $this;
147 if ($this->isW3cCompliant) {
148 $this->executor->execute(DriverCommand::ACTIONS, [
155 $this->createMoveAction($where),
165 return $this;
168 $this->moveIfNeeded($where);
169 $this->executor->execute(DriverCommand::MOUSE_DOWN);
171 return $this;
186 if ($this->isW3cCompliant) {
187 $this->executor->execute(DriverCommand::ACTIONS, [
193 'actions' => [$this->createMoveAction($where, $x_offset, $y_offset)],
198 return $this;
212 $this->executor->execute(DriverCommand::MOVE_TO, $params);
214 return $this;
224 if ($this->isW3cCompliant) {
225 $moveAction = $where ? [$this->createMoveAction($where)] : [];
227 $this->executor->execute(DriverCommand::ACTIONS, [
243 return $this;
246 $this->moveIfNeeded($where);
247 $this->executor->execute(DriverCommand::MOUSE_UP);
249 return $this;
258 $this->mouseMove($where);