By
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>
}
静态方法
Match all elements. |
使用说明Example
|
Match elements by the given CSS selector. |
使用说明Example
|
Match elements that have the given directive present. |
使用说明Example
|