The testing_e2e util does not belong in platform-browser and was never
intended to be a public API. Move it out of that whole tree.
BREAKING CHANGE:
The following API was never intended to be public and is removed:
```js
import {verifyNoBrowserErrors} from '@angular/platform-browser/testing_e2e';
```
Consider using Protractor's console plugin: https://github.com/angular/protractor-console-plugin
		
	
			
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
/**
 | 
						|
 * @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
 | 
						|
 */
 | 
						|
 | 
						|
import {verifyNoBrowserErrors} from 'e2e_util/e2e_util';
 | 
						|
 | 
						|
function waitForElement(selector: string) {
 | 
						|
  var EC = (<any>protractor).ExpectedConditions;
 | 
						|
  // Waits for the element with id 'abc' to be present on the dom.
 | 
						|
  browser.wait(EC.presenceOf($(selector)), 20000);
 | 
						|
}
 | 
						|
 | 
						|
describe('reuse example app', function() {
 | 
						|
 | 
						|
  afterEach(verifyNoBrowserErrors);
 | 
						|
 | 
						|
  var URL = '@angular/examples/router/ts/reuse/';
 | 
						|
 | 
						|
  it('should build a link which points to the detail page', function() {
 | 
						|
    browser.get(URL);
 | 
						|
    waitForElement('my-cmp');
 | 
						|
 | 
						|
    element(by.css('#naomi-link')).click();
 | 
						|
    waitForElement('my-cmp');
 | 
						|
    expect(browser.getCurrentUrl()).toMatch(/\/naomi$/);
 | 
						|
 | 
						|
    // type something into input
 | 
						|
    element(by.css('#message')).sendKeys('long time no see!');
 | 
						|
 | 
						|
    // navigate to Brad
 | 
						|
    element(by.css('#brad-link')).click();
 | 
						|
    waitForElement('my-cmp');
 | 
						|
    expect(browser.getCurrentUrl()).toMatch(/\/brad$/);
 | 
						|
 | 
						|
    // check that typed input is the same
 | 
						|
    expect(element(by.css('#message')).getAttribute('value')).toEqual('long time no see!');
 | 
						|
  });
 | 
						|
 | 
						|
});
 |