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-functional-testing-framework
src
Magento
FunctionalTestingFramework
XmlParser
PageParser.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\FunctionalTestingFramework\XmlParser
;
7
8
use
Magento\FunctionalTestingFramework\Config\DataInterface
;
9
use
Magento\FunctionalTestingFramework\ObjectManagerInterface
;
10
14
class
PageParser
implements
ParserInterface
15
{
21
protected
$objectManager
;
22
28
protected
$configData
;
29
35
public
function
__construct
(
ObjectManagerInterface
$objectManager
,
DataInterface
$configData
)
36
{
37
$this->objectManager =
$objectManager
;
38
$this->configData =
$configData
;
39
}
40
46
public
function
getData
(
$type
)
47
{
48
return
$this->configData->get(
$type
);
49
}
50
}
Magento\FunctionalTestingFramework\Config\DataInterface
Definition:
DataInterface.php:11
Magento\FunctionalTestingFramework\XmlParser\PageParser\$configData
$configData
Definition:
PageParser.php:28
Magento\FunctionalTestingFramework\XmlParser\PageParser\$objectManager
$objectManager
Definition:
PageParser.php:21
$type
$type
Definition:
item.phtml:13
Magento\FunctionalTestingFramework\XmlParser
Definition:
PageParser.php:6
Magento\FunctionalTestingFramework\XmlParser\PageParser
Definition:
PageParser.php:14
Magento\FunctionalTestingFramework\XmlParser\PageParser\getData
getData($type)
Definition:
PageParser.php:46
Magento\FunctionalTestingFramework\XmlParser\PageParser\__construct
__construct(ObjectManagerInterface $objectManager, DataInterface $configData)
Definition:
PageParser.php:35
Magento\FunctionalTestingFramework\XmlParser\ParserInterface
Definition:
ParserInterface.php:12
Magento\FunctionalTestingFramework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12