src/lib/test-textarea.ts
A wrapped DOM HTML textarea element, providing additional methods and attributes helping with writing tests
Methods |
Accessors |
constructor(tester: ComponentTester<>, debugElement: DebugElement)
|
|||||||||
Defined in src/lib/test-textarea.ts:8
|
|||||||||
Parameters :
|
fillWith | ||||||||
fillWith(value: string)
|
||||||||
Defined in src/lib/test-textarea.ts:17
|
||||||||
Sets the value of the wrapped textarea, then dispatches an event of type input and triggers a change detection
Parameters :
Returns :
void
|
click |
click()
|
Inherited from
TestHtmlElement
|
Defined in
TestHtmlElement:16
|
Clicks on the wrapped element, then triggers a change detection
Returns :
void
|
attr | ||||||||
attr(name: string)
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:66
|
||||||||
Gets the attribute of the wrapped element with the given name
Parameters :
Returns :
string | null
|
button | ||||||||
button(selector: string | Type
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:327
|
||||||||
Gets the first button matched by the given selector. Throws an Error if the matched element isn't actually a button.
Parameters :
Returns :
TestButton | null
the wrapped button, or null if no element was matched |
component | ||||||||
component(selector: Type
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:335
|
||||||||
Type parameters :
|
||||||||
Gets the first directive matching the given component directive selector and returns its component instance
Parameters :
Returns :
R
|
components | ||||||||
components(selector: Type
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:343
|
||||||||
Type parameters :
|
||||||||
Gets the directives matching the given component directive selector and returns their component instance
Parameters :
Returns :
Array<R>
|
custom | ||||||||||||
custom(selector: string | Type
|
||||||||||||
Inherited from
TestElement
|
||||||||||||
Defined in
TestElement:372
|
||||||||||||
Type parameters :
|
||||||||||||
Gets the element matching the given selector, and if found, creates and returns a custom TestElement of the provided type. This is useful to create custom higher-level abstractions similar to TestInput, TestSelect, etc. for custom elements or components.
Parameters :
Returns :
E | null
|
customs | ||||||||||||
customs(selector: string | Type
|
||||||||||||
Inherited from
TestElement
|
||||||||||||
Defined in
TestElement:384
|
||||||||||||
Type parameters :
|
||||||||||||
Gets the elements matching the given selector, and creates and returns custom TestElements of the provided type. This is useful to create custom higher-level abstractions similar to TestInput, TestSelect, etc. for custom elements or components.
Parameters :
Returns :
Array<E>
|
dispatchEvent | ||||||
dispatchEvent(event: Event)
|
||||||
Inherited from
TestElement
|
||||||
Defined in
TestElement:50
|
||||||
dispatches the given event from the wrapped element, then triggers a change detection
Parameters :
Returns :
void
|
dispatchEventOfType | ||||||
dispatchEventOfType(type: string)
|
||||||
Inherited from
TestElement
|
||||||
Defined in
TestElement:42
|
||||||
dispatches an event of the given type from the wrapped element, then triggers a change detection
Parameters :
Returns :
void
|
element | ||||||||
element(selector: K)
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:81
|
||||||||
Type parameters :
|
||||||||
Gets the first element matching the given CSS selector and wraps it into a TestElement. The actual type of the returned value is the TestElement subclass matching the type of the found element. So, if the matched element is an input for example, the method will return a TestInput. Usage:
const testElement: TestHtmlElement<HTMLDivElement> | null = tester.element('div');
Parameters :
Returns :
TestHtmlElement | null
the wrapped element, or null if no element matches the selector. |
elements | ||||||||
elements(selector: K)
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:193
|
||||||||
Type parameters :
|
||||||||
Gets all the elements matching the given CSS selector and wraps them into a TestElement. The actual type of the returned elements is the TestElement subclass matching the type of the found element. So, if the matched elements are inputs for example, the method will return an array of TestInput. Usage:
const testElements: Array<TestHtmlElement<HTMLDivElement>> = tester.elements('div');
Parameters :
Returns :
Array<TestHtmlElement<>>
the array of matched elements, empty if no element was matched |
input | ||||||||
input(selector: string | Type
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:299
|
||||||||
Gets the first input matched by the given selector. Throws an Error if the matched element isn't actually an input.
Parameters :
Returns :
TestInput | null
the wrapped input, or null if no element was matched |
select | ||||||||
select(selector: string | Type
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:308
|
||||||||
Gets the first select matched by the given selector. Throws an Error if the matched element isn't actually a select.
Parameters :
Returns :
TestSelect | null
the wrapped select, or null if no element was matched |
textarea | ||||||||
textarea(selector: string | Type
|
||||||||
Inherited from
TestElement
|
||||||||
Defined in
TestElement:318
|
||||||||
Gets the first textarea matched by the given selector
Parameters :
Returns :
TestTextArea | null
the wrapped textarea, or null if no element was matched. Throws an Error if the matched element isn't actually a textarea. |
token | ||||||||||||
token(selector: string | Type
|
||||||||||||
Inherited from
TestElement
|
||||||||||||
Defined in
TestElement:352
|
||||||||||||
Type parameters :
|
||||||||||||
Gets the first element matching the given selector, then gets the given token from its injector, or null if there is no such token
Parameters :
Returns :
R | null
|
tokens | ||||||||||||
tokens(selector: string | Type
|
||||||||||||
Inherited from
TestElement
|
||||||||||||
Defined in
TestElement:361
|
||||||||||||
Type parameters :
|
||||||||||||
Gets the elements matching the given selector, then gets their given token from their injector, or null if there is no such token
Parameters :
Returns :
Array<R | null>
|
value |
getvalue()
|
Defined in src/lib/test-textarea.ts:25
|
the value of the wrapped textarea
Returns :
string
|
disabled |
getdisabled()
|
Defined in src/lib/test-textarea.ts:32
|
the disabled property of the wrapped textarea
Returns :
boolean
|
import { ComponentTester } from './component-tester';
import { TestHtmlElement } from './test-html-element';
import { DebugElement } from '@angular/core';
/**
* A wrapped DOM HTML textarea element, providing additional methods and attributes helping with writing tests
*/
export class TestTextArea extends TestHtmlElement<HTMLTextAreaElement> {
constructor(tester: ComponentTester<unknown>, debugElement: DebugElement) {
super(tester, debugElement);
}
/**
* Sets the value of the wrapped textarea, then dispatches an event of type input and triggers a change detection
* @param value the new value of the textarea
*/
fillWith(value: string): void {
this.nativeElement.value = value;
this.dispatchEventOfType('input');
}
/**
* the value of the wrapped textarea
*/
get value(): string {
return this.nativeElement.value;
}
/**
* the disabled property of the wrapped textarea
*/
get disabled(): boolean {
return this.nativeElement.disabled;
}
}