System.setProperty("webdriver.chrome.driver", new File(
"target/webdriver/" + chromedriver).getAbsolutePath());
ChromeOptions options = new ChromeOptions();
// This flag avoids grant the camera
options.addArguments("--use-fake-ui-for-media-stream");
// This flag avoids warning in chrome. See:
// https://code.google.com/p/chromedriver/issues/detail?id=799
options.addArguments("--test-type");