You are here

MouseEventFailed.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/jcalderonzumba/gastonjs/src/Exception/MouseEventFailed.php

File

vendor/jcalderonzumba/gastonjs/src/Exception/MouseEventFailed.php
View source
<?php

namespace Zumba\GastonJS\Exception;


/**
 * Class MouseEventFailed
 * @package Zumba\GastonJS\Exception
 */
class MouseEventFailed extends NodeError {

  /**
   * Gets the name of the event
   * @return string
   */
  public function getName() {
    return $this->response["args"][0];
  }

  /**
   * Selector of the element to act with the mouse
   * @return string
   */
  public function getSelector() {
    return $this->response["args"][1];
  }

  /**
   * Returns the position where the click was done
   * @return array
   */
  public function getPosition() {
    $position = array();
    $position[0] = $this->response["args"][1]['x'];
    $position[1] = $this->response["args"][2]['y'];
    return $position;
  }

  /**
   * @return string
   */
  public function message() {
    $name = $this
      ->getName();
    $position = implode(",", $this
      ->getPosition());
    return "Firing a {$name} at co-ordinates [{$position}] failed. Poltergeist detected\n            another element with CSS selector '#{selector}' at this position.\n            It may be overlapping the element you are trying to interact with.\n            If you don't care about overlapping elements, try using node.trigger('{$name}').";
  }

}

Classes

Namesort descending Description
MouseEventFailed Class MouseEventFailed @package Zumba\GastonJS\Exception