13 lines
		
	
	
		
			283 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			283 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
describe('Protractor quick start test', function() {
 | 
						|
	beforeEach(function() {
 | 
						|
		browser.get('quickstart/index.html');
 | 
						|
	});
 | 
						|
 | 
						|
	// #docregion test
 | 
						|
	it('should display Alice', function() {
 | 
						|
 		expect(element(by.id('output')).getText()).toEqual('Hello Alice');
 | 
						|
	});
 | 
						|
	// #enddocregion
 | 
						|
});
 | 
						|
 |