Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AssertSpecialPriceOnGroupedProductPage.php
Go to the documentation of this file.
1 <?php
8 
10 use Magento\Catalog\Test\Page\Product\CatalogProductView;
12 use Magento\Mtf\Client\BrowserInterface;
13 
18 {
24  protected $errorMessage = 'This "%s" product\'s special price on product page NOT equals passed from fixture.';
25 
31  protected $successfulMessage = 'Special price on grouped product page equals passed from fixture.';
32 
42  public function processAssert(
43  CatalogProductView $catalogProductView,
44  GroupedProduct $product,
46  BrowserInterface $browser
47  ) {
48  $this->processAssertPrice($product, $catalogProductView, $specialPrice, $browser);
49  }
50 }
processAssert(CatalogProductView $catalogProductView, GroupedProduct $product, AssertProductSpecialPriceOnProductPage $specialPrice, BrowserInterface $browser)