function it_does_not_report_screenshot_taking_not_supported_errors_on_screen(OutputInterface $output, Session $session, DriverInterface $driver)
 {
     $output->writeln(Argument::cetera())->shouldNotBeCalled();
     $driverInstance = $driver->getWrappedObject();
     $session->getScreenshot()->willThrow(new UnsupportedDriverActionException('Message.', $driverInstance));
     $this->takeScreenshot();
 }