TestCase
Source URL: https://playwright.dev/docs/api/class-testcase
TestCase | Playwright
섹션 제목: “TestCase | Playwright”TestCase corresponds to every test() call in a test file. When a single test() is running in multiple projects or repeated multiple times, it will have multiple TestCase objects in corresponding projects’ suites.
Methods
섹션 제목: “Methods”Added in: v1.10 testCase.ok
Whether the test is considered running fine. Non-ok tests fail the test run with non-zero exit code.
Usage
testCase.ok();Returns
outcome
섹션 제목: “outcome”Added in: v1.10 testCase.outcome
Testing outcome for this test. Note that outcome is not the same as testResult.status:
- Test that is expected to fail and actually fails is
'expected'. - Test that passes on a second retry is
'flaky'.
Usage
testCase.outcome();Returns
- “skipped” | “expected” | “unexpected” | “flaky”#
titlePath
섹션 제목: “titlePath”Added in: v1.10 testCase.titlePath
Returns a list of titles from the root down to this test.
Usage
testCase.titlePath();Returns
Properties
섹션 제목: “Properties”annotations
섹션 제목: “annotations”Added in: v1.10 testCase.annotations
testResult.annotations of the last test run.
Usage
testCase.annotationsType
Annotation type, for example 'skip' or 'fail'.
* `description` [string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type "string") _(optional)_Optional description.
* `location` [Location](https://playwright.dev/docs/api/class-location "Location") _(optional)_Optional location in the source where the annotation is added.
expectedStatus
섹션 제목: “expectedStatus”Added in: v1.10 testCase.expectedStatus
Expected test status.
- Tests marked as test.skip() or test.fixme() are expected to be
'skipped'. - Tests marked as test.fail() are expected to be
'failed'. - Other tests are expected to be
'passed'.
See also testResult.status for the actual status.
Usage
testCase.expectedStatusType
- “passed” | “failed” | “timedOut” | “skipped” | “interrupted”
Added in: v1.25 testCase.id
A test ID that is computed based on the test file name, test title and project name. The ID is unique within Playwright session.
Usage
testCase.idType
location
섹션 제목: “location”Added in: v1.10 testCase.location
Location in the source where the test is defined.
Usage
testCase.locationType
parent
섹션 제목: “parent”Added in: v1.10 testCase.parent
Suite this test case belongs to.
Usage
testCase.parentType
repeatEachIndex
섹션 제목: “repeatEachIndex”Added in: v1.10 testCase.repeatEachIndex
Contains the repeat index when running in “repeat each” mode. This mode is enabled by passing --repeat-each to the command line.
Usage
testCase.repeatEachIndexType
results
섹션 제목: “results”Added in: v1.10 testCase.results
Results for each run of this test.
Usage
testCase.resultsType
retries
섹션 제목: “retries”Added in: v1.10 testCase.retries
The maximum number of retries given to this test in the configuration.
Learn more about test retries.
Usage
testCase.retriesType
tags
섹션 제목: “tags”Added in: v1.42 testCase.tags
The list of tags defined on the test or suite via test() or test.describe(), as well as @-tokens extracted from test and suite titles.
Learn more about test tags.
Usage
testCase.tagsType
timeout
섹션 제목: “timeout”Added in: v1.10 testCase.timeout
The timeout given to the test. Affected by testConfig.timeout, testProject.timeout, test.setTimeout(), test.slow() and testInfo.setTimeout().
Usage
testCase.timeoutType
title
섹션 제목: “title”Added in: v1.10 testCase.title
Test title as passed to the test() call.
Usage
testCase.titleType
type
섹션 제목: “type”Added in: v1.44 testCase.type
Returns “test”. Useful for detecting test cases in suite.entries().
Usage
testCase.typeType
- “test”