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
Checkout
Test
Block
Onepage
CustomAddress.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Checkout\Test\Block\Onepage
;
8
9
use Magento\Mtf\Block\Form;
10
use Magento\Mtf\Client\Locator;
11
15
class
CustomAddress
extends
Form
16
{
22
private
$updateButtonSelector =
'.action.action-update'
;
23
29
private
$select =
"[name='billing_address_id']"
;
30
36
public
function
clickUpdate
()
37
{
38
$this->_rootElement->find($this->updateButtonSelector)->click();
39
}
40
47
public
function
selectAddress
(
$value
)
48
{
49
$this->_rootElement->find($this->select, Locator::SELECTOR_CSS,
'select'
)->setValue(
$value
);
50
}
51
}
Magento\Checkout\Test\Block\Onepage\CustomAddress\selectAddress
selectAddress($value)
Definition:
CustomAddress.php:47
$value
$value
Definition:
gender.phtml:16
Magento\Checkout\Test\Block\Onepage\CustomAddress\clickUpdate
clickUpdate()
Definition:
CustomAddress.php:36
Magento\Checkout\Test\Block\Onepage
Definition:
AbstractReview.php:7
Magento\Checkout\Test\Block\Onepage\CustomAddress
Definition:
CustomAddress.php:15