describe('hello, protractor', function () { describe('index', function () { browser.get('/'); it('should have a title', function () { expect(browser.getTitle()).toBe('P2 Platform'); }); }); });