2016-06-23 12:47:54 -04: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-11-10 21:13:11 -05:00
|
|
|
import {browser} from 'protractor';
|
2015-07-14 20:53:04 -04:00
|
|
|
|
2019-02-01 08:46:38 -05:00
|
|
|
import {verifyNoBrowserErrors} from '../../../e2e_util/e2e_util';
|
|
|
|
|
2015-07-14 20:53:04 -04:00
|
|
|
describe('jsonp', function() {
|
|
|
|
|
|
|
|
afterEach(verifyNoBrowserErrors);
|
|
|
|
|
|
|
|
describe('fetching', function() {
|
2019-02-01 08:46:38 -05:00
|
|
|
const URL = '/';
|
2015-07-14 20:53:04 -04:00
|
|
|
|
|
|
|
it('should fetch and display people', function() {
|
|
|
|
browser.get(URL);
|
|
|
|
expect(getComponentText('jsonp-app', '.people')).toEqual('hello, caitp');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2016-10-23 10:21:18 -04:00
|
|
|
function getComponentText(selector: string, innerSelector: string) {
|
2016-08-05 12:56:53 -04:00
|
|
|
return browser.executeScript(
|
2016-10-23 10:21:18 -04:00
|
|
|
`return document.querySelector("${selector}").querySelector("${innerSelector}").textContent.trim()`);
|
2015-07-14 20:53:04 -04:00
|
|
|
}
|