I've been trying to get protractor to accept the browser local camera by using
browser.actions().sendKeys(protractor.Key.TAB, protractor.Key.TAB, protractor.Key.ENTER).perform();
This tabs to the accept button properly, but the enter key never gets submitted. I've also tried using
browser.actions().sendKeys(protractor.Key.TAB, protractor.Key.TAB).perform();
browser.actions().sendKeys(protractor.Key.ENTER).perform();
thinking that maybe enter needed to be on it's own line.
Any ideas on this?