-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #262 from magento-falcons/MAGETWO-56240
[Falcons] Sprint 2 delivery
- Loading branch information
Showing
43 changed files
with
1,205 additions
and
444 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
dev/tests/functional/tests/app/Magento/Setup/Test/Block/Extension/UpdateGrid.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
/** | ||
* Copyright © 2016 Magento. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
namespace Magento\Setup\Test\Block\Extension; | ||
|
||
use Magento\Mtf\Client\Locator; | ||
use Magento\Setup\Test\Fixture\Extension; | ||
|
||
/** | ||
* Class UpdateGrid | ||
* | ||
* Grid with extension updates. | ||
*/ | ||
class UpdateGrid extends AbstractGrid | ||
{ | ||
/** | ||
* 'Update All' button. | ||
* | ||
* @var string | ||
*/ | ||
protected $updateAllButton = "[ng-click*='updateAll']"; | ||
|
||
/** | ||
* Grid that contains the list of extensions. | ||
* | ||
* @var string | ||
*/ | ||
protected $dataGrid = '#updateExtensionGrid'; | ||
|
||
/** | ||
* Click to update all button. | ||
* | ||
* @return void | ||
*/ | ||
public function clickUpdateAllButton() | ||
{ | ||
$this->_rootElement->find($this->updateAllButton, Locator::SELECTOR_CSS)->click(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.