Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SuperAdmin.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Mtf\Fixture\DataFixture;
10 
15 class SuperAdmin extends DataFixture
16 {
20  protected function _initData()
21  {
22  $this->_data = [
23  'fields' => [
24  'username' => [
25  'value' => $this->_configuration->get('application/0/backendLogin/0/value'),
26  ],
27  'password' => [
28  'value' => $this->_configuration->get('application/0/backendPassword/0/value'),
29  ],
30  ],
31  ];
32  }
33 }