mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
20 lines
493 B
Markdown
20 lines
493 B
Markdown
![]() |
# class: TestError
|
||
|
* langs: js
|
||
|
|
||
|
Information about an error thrown during test execution.
|
||
|
|
||
|
## property: TestError.message
|
||
|
- type: <[void]|[string]>
|
||
|
|
||
|
Error message. Set when [Error] (or its subclass) has been thrown.
|
||
|
|
||
|
## property: TestError.stack
|
||
|
- type: <[void]|[string]>
|
||
|
|
||
|
Error stack. Set when [Error] (or its subclass) has been thrown.
|
||
|
|
||
|
## property: TestError.value
|
||
|
- type: <[void]|[string]>
|
||
|
|
||
|
The value that was thrown. Set when anything except the [Error] (or its subclass) has been thrown.
|