ScraperConfiguration includedConfig;
try {
includedConfig = isUrl ? new ScraperConfiguration(new URL(fullPath)) : new ScraperConfiguration(fullPath);
scraper.execute(includedConfig.getOperations());
return new EmptyVariable();
} catch (FileNotFoundException e) {
throw new FileException("Cannot include configuration file " + fullPath, e);
} catch (MalformedURLException e) {
throw new FileException("Cannot include configuration file " + fullPath, e);
} catch (IOException e) {