for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Behat\Page\Admin\ShippingCategory;
use Sylius\Behat\Behaviour\NamesIt;
use Sylius\Behat\Behaviour\SpecifiesItsCode;
use Sylius\Behat\Page\Admin\Crud\CreatePage as BaseCreatePage;
/**
* @author Anna Walasek <[email protected]>
class CreatePage extends BaseCreatePage implements CreatePageInterface
{
use NamesIt;
use SpecifiesItsCode;
* {@inheritdoc}
public function specifyDescription($description)
$this->getElement('description')->setValue($description);
}
protected function getDefinedElements()
return array_merge(parent::getDefinedElements(), [
'code' => '#sylius_shipping_category_code',
'description' => '#sylius_shipping_category_description',
]);