For my angular end-to-end testing, I am utilizing protractor. When attempting to input keys into an element, I follow this syntax:
browser.actions().keyDown(protractor.Key.CONTROL).sendKeys('end').perform();
Unfortunately, this method is not producing any results for me. I am unsure of where I may be going wrong in my implementation.