Example #1
0
 /**
  * @constructor
  * @param Element $element
  * @param Mapper $mapper
  * @param BlockFactory $blockFactory
  * @param Browser $browser
  * @param XmlConverter $xmlConverter
  * @param array $config
  */
 public function __construct(Element $element, Mapper $mapper, BlockFactory $blockFactory, Browser $browser, XmlConverter $xmlConverter, array $config = [])
 {
     $this->xmlConverter = $xmlConverter;
     parent::__construct($element, $blockFactory, $mapper, $browser, $config);
 }
Example #2
0
 /**
  * @constructor
  * @param Element $element
  * @param Mapper $mapper
  * @param BlockFactory $blockFactory
  * @param XmlConverter $xmlConverter
  */
 public function __construct(Element $element, Mapper $mapper, BlockFactory $blockFactory, XmlConverter $xmlConverter)
 {
     $this->xmlConverter = $xmlConverter;
     parent::__construct($element, $blockFactory, $mapper);
 }
Example #3
0
 /**
  * @constructor
  * @param SimpleElement $element
  * @param Mapper $mapper
  * @param BlockFactory $blockFactory
  * @param BrowserInterface $browser
  * @param array $config
  */
 public function __construct(SimpleElement $element, Mapper $mapper, BlockFactory $blockFactory, BrowserInterface $browser, array $config = [])
 {
     parent::__construct($element, $blockFactory, $mapper, $browser, $config);
 }
Example #4
0
 /**
  * Fill form with attribute options
  *
  * @param FixtureInterface $fixture
  * @param Element|null $element
  * @return $this
  */
 public function fill(FixtureInterface $fixture, Element $element = null)
 {
     parent::fill($fixture, $element);
     $this->fillOptions($fixture);
     return $this;
 }