* Set textContent of the element
(content: string)
| 430 | * Set textContent of the element |
| 431 | */ |
| 432 | setText(content: string): this { |
| 433 | this.native.textContent = content; |
| 434 | return this; |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * Remove the element from the DOM |
no outgoing calls
no test coverage detected