10 use Magento\Mtf\Fixture\FixtureInterface;
33 $priceBlock = $this->catalogCategoryView->getListProductBlock()->getProductItem(
$product)->getPriceBlock();
34 $actualPrices[
'category_price_excl_tax'] =
null;
35 $actualPrices[
'category_price_incl_tax'] = $priceBlock->getPriceIncludingTax();
48 $viewBlock = $this->catalogProductView->getViewBlock();
49 $actualPrices[
'product_view_price_excl_tax'] =
null;
50 $actualPrices[
'product_view_price_incl_tax'] = $viewBlock->getPriceBlock()->getPriceIncludingTax();
63 $totalsBlock = $this->checkoutCart->getTotalsBlock();
64 $actualPrices[
'subtotal_excl_tax'] =
null;
65 $actualPrices[
'subtotal_incl_tax'] = $totalsBlock->getSubtotal();
66 $actualPrices[
'discount'] = $totalsBlock->getDiscount();
67 $actualPrices[
'shipping_excl_tax'] = $totalsBlock->getShippingPrice();
68 $actualPrices[
'shipping_incl_tax'] = $totalsBlock->getShippingPriceInclTax();
69 $actualPrices[
'tax'] = $totalsBlock->getTax();
70 $actualPrices[
'subtotal_excl_tax'] = $totalsBlock->getSubtotalExcludingTax();
71 $actualPrices[
'subtotal_incl_tax'] = $totalsBlock->getSubtotalIncludingTax();
getProductPagePrices($actualPrices)
getCategoryPrices(FixtureInterface $product, $actualPrices)