Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ReportsSectionBlock.php
Go to the documentation of this file.
1 <?php
7 
8 use Magento\Mtf\Block\Block;
9 
13 class ReportsSectionBlock extends Block
14 {
20  protected $advancedReportingButton = '[data-index="analytics-service-link"]';
21 
27  public function click()
28  {
29  $this->_rootElement->find($this->advancedReportingButton)->click();
30  }
31 }