2017-02-01 23:47:04 -05:00
|
|
|
import { browser, element, by } from 'protractor';
|
|
|
|
|
|
|
|
describe('Hello world E2E Tests', function () {
|
|
|
|
it('should display: Hello world!', function () {
|
|
|
|
browser.get('');
|
2017-03-01 11:05:22 -05:00
|
|
|
const div = element(by.css('div'));
|
|
|
|
expect(div.getText()).toEqual('Hello world!');
|
|
|
|
element(by.css('input')).sendKeys('!');
|
|
|
|
expect(div.getText()).toEqual('Hello world!!');
|
2017-02-01 23:47:04 -05:00
|
|
|
});
|
|
|
|
});
|