This is my spec:
describe("E2E Tests", function() {
beforeEach(function() {
browser().navigateTo('/');
});
it('should navigate to somewhere fancy', function() {
var emailCount = element("#email").count();
expect(emailCount).toBe(1);
});
});
The root request (/) is redirected to
http://localhost:8000/app/index.html (absolute URI), and if I turn off singleRun and keep Chrome open I can see in the network pane that Chrome fetches /app/index.html and the contents referenced from it (CSS, images).
What can I do to debug further?
Thanks,
Per