import {browser, element, by, By, $, $$, ExpectedConditions, protractor} from 'protractor'; describe('angularjs homepage todo list', function() { it('should add a todo', () => { browser.get('http://localhost:3000/'); expect(element(by.name('ngEnterText')).getText()).toEqual('Hello world!!!'); }); });