Sylius\Behat\Context\Ui\Shop\CartContext::iAddQuantityOfProductsToTheCart PHP Method

iAddQuantityOfProductsToTheCart() public method

public iAddQuantityOfProductsToTheCart ( $quantity, Sylius\Component\Product\Model\ProductInterface $product )
$product Sylius\Component\Product\Model\ProductInterface
    public function iAddQuantityOfProductsToTheCart($quantity, ProductInterface $product)
    {
        $this->productShowPage->open(['slug' => $product->getSlug()]);
        $this->productShowPage->addToCartWithQuantity($quantity);
    }