removeProduct() public method

public removeProduct ( string $productName )
$productName string
示例#1
0
 /**
  * @Given /^I (?:remove|removed) product "([^"]+)" from the cart$/
  */
 public function iRemoveProductFromTheCart($productName)
 {
     $this->summaryPage->open();
     $this->summaryPage->removeProduct($productName);
 }