You can associate links with Robot Framework test cases by using specific tag patterns in the [Tags] section. The syntax follows the pattern allure.<LINK TYPE>[.<TEXT>]:<LINK>.
Supported <LINK TYPE> values are:
link: For general web links.issue: For bug tracking or issue management links.tms: For Test Management System links.
The <TEXT> part is optional. If omitted, the link URL itself will be used as the display text in the Allure report. If provided, it will be used as the link label.
*** Test Cases ***
Allure Plain Link
[Tags] allure.link:https://github.com/allure-framework/allure-python
No Operation
Allure Named Link
[Tags] allure.link.allure-python:https://github.com/allure-framework/allure-python
No Operation
Allure Issue Link
[Tags] allure.issue.ISSUE-1:https://github.com/allure-framework/allure-python/issues/1
No Operation
Allure TMS Link
[Tags] allure.tms.TESTCASE-1:https://my-tms/test-cases/1
No Operation