I have stored all the link elements in var as below-
it("should click all the links one by one", function()
{
browser.get("https://angularjs.org");
var allLinks=element.all(by.tagName("a"));
var number=allLinks.count();
expect(number).toEqual(80);
})
This part is working fine, now I want to navigate to links stored in var allLinks one by one