/**
  * переход на страницу продукта
  * @param  RemoteWebElement $product
  * @return Page_Product
  */
 public function click_product(RemoteWebElement $product)
 {
     $product->click();
     return new Page_Product($this->web_driver);
 }