Add Link to Test Case Report Built-ins¶
Appends a URL to the test case report. Appended URLs are listed in the test case report, after the executed steps. Each hyperlink is clickable and opens the provided URL.
Syntax
1 | attachLinkToReport(<name String>, <url String>) |
Parameters
-
name - A name assigned to the URL that will be attached to the report
-
url - Any valid URL
Example
1 2 3 | stepdef "attach link to report" attachLinkToReport("example", "https://example.com") end |