Change-Id: I2a89d3493e2f98ab1b9a0666d9dc075a2457e432
public List<DesiredCapabilities> getBrowsersToTest() {
// No Flash on PhantomJS, IE 11 has a timeout issue, looks like a
// IEDriver problem, not reproduced running locally.
- return getBrowserCapabilities(Browser.CHROME, Browser.FIREFOX);
+ // Flash is disabled in Chrome.
+ return getBrowserCapabilities(Browser.FIREFOX);
}
@Test
@Override
public List<DesiredCapabilities> getBrowsersToTest() {
// FF and PhantomJS fail at Flash and ShiftClick
- return getBrowsersSupportingShiftClick();
+ List<DesiredCapabilities> capabilities = getBrowsersSupportingShiftClick();
+ // Flash support in Chrome is disabled
+ capabilities.removeAll(getBrowserCapabilities(Browser.CHROME));
+ return capabilities;
}
@Test