/**
  * Creates browser configuration.
  *
  * @param EventDispatcherInterface     $event_dispatcher              Event dispatcher.
  * @param IBrowserConfigurationFactory $browser_configuration_factory Browser configuration factory.
  */
 public function __construct(EventDispatcherInterface $event_dispatcher, IBrowserConfigurationFactory $browser_configuration_factory)
 {
     $this->defaultParameters['type'] = 'saucelabs';
     parent::__construct($event_dispatcher, $browser_configuration_factory);
 }