10 use Magento\Mtf\Fixture\FixtureInterface;
33 $priceBlock = $this->catalogCategoryView->getListProductBlock()->getProductItem(
$product)->getPriceBlock();
34 $actualPrices[
'category_price_excl_tax'] = $priceBlock->getPriceExcludingTax();
35 $actualPrices[
'category_price_incl_tax'] =
null;
48 $viewBlock = $this->catalogProductView->getViewBlock();
49 $actualPrices[
'product_view_price_excl_tax'] = $viewBlock->getPriceBlock()->getPriceExcludingTax();
50 $actualPrices[
'product_view_price_incl_tax'] =
null;
63 $totalsBlock = $this->checkoutCart->getTotalsBlock();
64 $actualPrices[
'subtotal_excl_tax'] = $totalsBlock->getSubtotal();
65 $actualPrices[
'subtotal_incl_tax'] =
null;
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[
'grand_total_excl_tax'] = $totalsBlock->getGrandTotal();
71 $actualPrices[
'grand_total_incl_tax'] =
null;
getProductPagePrices($actualPrices)
getCategoryPrices(FixtureInterface $product, $actualPrices)