26 lines
		
	
	
		
			605 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			605 B
		
	
	
	
		
			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 {DebugElement} from '@angular/core';
 | |
| import {By} from '@angular/platform-browser';
 | |
| 
 | |
| let debugElement: DebugElement = undefined !;
 | |
| class MyDirective {}
 | |
| 
 | |
| // #docregion by_all
 | |
| debugElement.query(By.all());
 | |
| // #enddocregion
 | |
| 
 | |
| // #docregion by_css
 | |
| debugElement.query(By.css('[attribute]'));
 | |
| // #enddocregion
 | |
| 
 | |
| // #docregion by_directive
 | |
| debugElement.query(By.directive(MyDirective));
 | |
| // #enddocregion
 |