Пример #1
0
 /**
  * @param $button
  *
  * @return Element
  */
 public function item($button)
 {
     $this->debug("Toolbar: " . $button);
     if (isset($this->pageMap[$button])) {
         $button = $this->pageMap[$button]['menu'];
         $this->debug(" => " . $button);
     }
     $this->debug("\n");
     $item = $this->driver->getElement(sprintf($this->itemFormat, urldecode($button)));
     return $item;
 }