Locators by themselves do not return an element which can be interacted with in Protractor, they are simply instructions that indicate Protractor how to find the element.
To access the element itself, use this syntax:
element(locator);
element.all(locator);
Note: the element(s) is not actually...