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
Setup
Test
Block
SystemUpgrade.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Setup\Test\Block
;
8
9
use Magento\Mtf\Block\Block;
10
use Magento\Mtf\Client\Locator;
11
15
class
SystemUpgrade
extends
Block
16
{
20
protected
$systemUpgradeMessage
=
'start-updater'
;
21
27
protected
$upgrade
=
"[ng-click*='update']"
;
28
34
public
function
getUpgradeMessage
()
35
{
36
return
$this->_rootElement->find($this->systemUpgradeMessage, Locator::SELECTOR_NAME)->getText();
37
}
38
44
public
function
clickSystemUpgrade
()
45
{
46
$this->_rootElement->find($this->upgrade, Locator::SELECTOR_CSS)->click();
47
}
48
}
Magento\Setup\Test\Block\SystemUpgrade\$upgrade
$upgrade
Definition:
SystemUpgrade.php:27
Magento\Setup\Test\Block\SystemUpgrade
Definition:
SystemUpgrade.php:15
Magento\Setup\Test\Block\SystemUpgrade\getUpgradeMessage
getUpgradeMessage()
Definition:
SystemUpgrade.php:34
Magento\Setup\Test\Block\SystemUpgrade\$systemUpgradeMessage
$systemUpgradeMessage
Definition:
SystemUpgrade.php:20
Magento\Setup\Test\Block\SystemUpgrade\clickSystemUpgrade
clickSystemUpgrade()
Definition:
SystemUpgrade.php:44
Magento\Setup\Test\Block
Definition:
Authentication.php:7