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