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
Catalog
Test
Block
Links
CompareLink.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Catalog\Test\Block\Links
;
8
9
use Magento\Mtf\Block\Block;
10
14
class
CompareLink
extends
Block
15
{
21
protected
$qtyCompareProducts
=
'.compare .counter.qty'
;
22
28
protected
$linkCompareProducts
=
'[data-role="compare-products-link"] a.compare'
;
29
35
public
function
getQtyInCompareList
()
36
{
37
$this->waitForElementVisible($this->qtyCompareProducts);
38
$compareProductLink = $this->_rootElement->find($this->qtyCompareProducts);
39
preg_match_all(
'/^\d+/'
, $compareProductLink->getText(), $matches);
40
return
$matches[0][0];
41
}
42
48
public
function
waitForCompareProductsLinks
()
49
{
50
$this->waitForElementVisible($this->linkCompareProducts);
51
}
52
}
Magento\Catalog\Test\Block\Links
Definition:
CompareLink.php:7
Magento\Catalog\Test\Block\Links\CompareLink\$qtyCompareProducts
$qtyCompareProducts
Definition:
CompareLink.php:21
Magento\Catalog\Test\Block\Links\CompareLink\$linkCompareProducts
$linkCompareProducts
Definition:
CompareLink.php:28
Magento\Catalog\Test\Block\Links\CompareLink\waitForCompareProductsLinks
waitForCompareProductsLinks()
Definition:
CompareLink.php:48
Magento\Catalog\Test\Block\Links\CompareLink\getQtyInCompareList
getQtyInCompareList()
Definition:
CompareLink.php:35
Magento\Catalog\Test\Block\Links\CompareLink
Definition:
CompareLink.php:14