Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
magento2-base
dev
tests
functional
tests
app
Magento
CatalogSearch
Test
Constraint
AssertSearchTermMassActionNotOnFrontend.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\CatalogSearch\Test\Constraint
;
8
9
use
Magento\CatalogSearch\Test\Fixture\CatalogSearchQuery
;
10
use Magento\Cms\Test\Page\CmsIndex;
11
use Magento\Mtf\Client\BrowserInterface;
12
use Magento\Mtf\Constraint\AbstractConstraint;
13
18
class
AssertSearchTermMassActionNotOnFrontend
extends
AbstractConstraint
19
{
29
public
function
processAssert(
30
array $searchTerms,
31
CmsIndex $cmsIndex,
32
BrowserInterface $browser,
33
AssertSearchTermNotOnFrontend
$assertSearchTermNotOnFrontend
34
) {
35
foreach
($searchTerms as $term) {
37
$assertSearchTermNotOnFrontend->
processAssert
($cmsIndex, $browser, $term);
38
}
39
}
40
46
public
function
toString
()
47
{
48
return
'All search terms were successfully removed (redirects to the specified URL was not performed).'
;
49
}
50
}
Magento\CatalogSearch\Test\Constraint
Definition:
AssertAdvancedSearchAttributeIsAbsent.php:7
Magento\CatalogSearch\Test\Fixture\CatalogSearchQuery
Definition:
QueryText.php:7
Magento\CatalogSearch\Test\Constraint\AssertSearchTermNotOnFrontend
Definition:
AssertSearchTermNotOnFrontend.php:18
Magento\CatalogSearch\Test\Constraint\AssertSearchTermMassActionNotOnFrontend
Definition:
AssertSearchTermMassActionNotOnFrontend.php:18
Magento\CatalogSearch\Test\Constraint\AssertSearchTermMassActionNotOnFrontend\toString
toString()
Definition:
AssertSearchTermMassActionNotOnFrontend.php:46
Magento\CatalogSearch\Test\Constraint\AssertSearchTermNotOnFrontend\processAssert
processAssert(CmsIndex $cmsIndex, BrowserInterface $browser, CatalogSearchQuery $searchTerm)
Definition:
AssertSearchTermNotOnFrontend.php:28