/**
  * Moves mouse to the element.
  *
  * @param int $x X offset
  * @param int $y Y offset
  *
  * @return Element
  */
 public function moveTo($x = 0, $y = 0)
 {
     $this->browser->moveTo($x, $y, $this);
     return $this;
 }