On this page
By
class
Predicates for use with DebugElement
's query functions.
class By {
static all(): Predicate<DebugElement>
static css(selector: string): Predicate<DebugElement>
static directive(type: Type<any>): Predicate<DebugElement>
}
Static methods
all()
|
---|
Match all elements. |
|
Example
|
css()
|
||
---|---|---|
Match elements by the given CSS selector. |
||
|
selector | Type: |
Returns
Example
debugElement.query(By.css('[attribute]'));
directive()
|
||
---|---|---|
Match elements that have the given directive present. |
||
|
type | Type: |
Returns
Example
debugElement.query(By.directive(MyDirective));
© 2010–2019 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v6.angular.io/api/platform-browser/By