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
Test
Util
BaseObjectExtractor.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\FunctionalTestingFramework\Test\Util
;
8
12
class
BaseObjectExtractor
13
{
14
const
NODE_NAME
=
'nodeName'
;
15
const
NAME
=
'name'
;
16
20
public
function
__construct
()
21
{
22
// empty
23
}
24
33
protected
function
stripDescriptorTags
(
$data
, ...$tags)
34
{
35
$results
=
$data
;
36
foreach
($tags as $tag) {
37
unset(
$results
[$tag]);
38
}
39
40
return
$results
;
41
}
42
}
$results
$results
Definition:
popup.phtml:13
Magento\FunctionalTestingFramework\Test\Util\BaseObjectExtractor
Definition:
BaseObjectExtractor.php:12
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\FunctionalTestingFramework\Test\Util\BaseObjectExtractor\__construct
__construct()
Definition:
BaseObjectExtractor.php:20
Magento\FunctionalTestingFramework\Test\Util\BaseObjectExtractor\stripDescriptorTags
stripDescriptorTags($data,... $tags)
Definition:
BaseObjectExtractor.php:33
Magento\FunctionalTestingFramework\Test\Util\BaseObjectExtractor\NAME
const NAME
Definition:
BaseObjectExtractor.php:15
Magento\FunctionalTestingFramework\Test\Util
Definition:
ActionGroupObjectExtractor.php:7
Magento\FunctionalTestingFramework\Test\Util\BaseObjectExtractor\NODE_NAME
const NODE_NAME
Definition:
BaseObjectExtractor.php:14