Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
BackupGrid.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Backend\Test\Block\Widget\Grid as GridInterface;
10 
15 class BackupGrid extends GridInterface
16 {
22  protected $backupRow = 'td[data-column="time"]';
23 
29  public function isBackupRowVisible()
30  {
31  return $this->_rootElement->find($this->backupRow)->isVisible();
32  }
33 }