/**
  * @param InputInterface  $input
  * @param OutputInterface $output
  *
  * @throws \RuntimeException
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     $this->setDownloaderOptionsFromInput($input);
     $this->seleniumHandler->download();
     $output->writeln(PHP_EOL, true);
     $output->writeln('Done');
 }