Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AttributesGrid.php
Go to the documentation of this file.
1 <?php
8 
10 use Magento\Mtf\Client\Locator;
11 
12 class AttributesGrid extends DataGrid
13 {
17  protected $selectItem = '[data-action=select-row]';
18 
22  protected $filters = [
23  'frontend_label' => [
24  'selector' => '[name="frontend_label"]',
25  ],
26  ];
27 
31  public function deselectAttributes()
32  {
33  $actionType = 'Deselect All';
34  $this->selectMassAction($actionType);
35  }
36 }
selectMassAction($massActionSelection)
Definition: DataGrid.php:318