2016-06-23 09:47:54 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2016-07-13 10:10:02 -07:00
|
|
|
import {verifyNoBrowserErrors} from 'e2e_util/e2e_util';
|
2016-11-10 18:13:11 -08:00
|
|
|
import {browser} from 'protractor';
|
2015-04-28 23:07:55 -07:00
|
|
|
|
|
|
|
describe('http', function() {
|
|
|
|
|
|
|
|
afterEach(verifyNoBrowserErrors);
|
|
|
|
|
|
|
|
describe('fetching', function() {
|
2016-10-23 16:21:18 +02:00
|
|
|
const URL = 'all/playground/src/http/index.html';
|
2015-04-28 23:07:55 -07:00
|
|
|
|
|
|
|
it('should fetch and display people', function() {
|
|
|
|
browser.get(URL);
|
|
|
|
expect(getComponentText('http-app', '.people')).toEqual('hello, Jeff');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-10-23 16:21:18 +02:00
|
|
|
function getComponentText(selector: string, innerSelector: string) {
|
2016-08-05 09:56:53 -07:00
|
|
|
return browser.executeScript(
|
2016-10-23 16:21:18 +02:00
|
|
|
`return document.querySelector("${selector}").querySelector("${innerSelector}").textContent.trim()`);
|
2015-04-28 23:07:55 -07:00
|
|
|
}
|