在 Kiwi TCMS TestExecution 期间单击“报告错误”时,不会打开 URL 进行编辑
When clicking `Report bug` during Kiwi TCMS TestExecution no URL for editing is opened
我configured Redmine as external bug tracker
Tracker type
: tcms.issuetracker.types.Redmine
Base URL
和 API URL
都指向我们的 Redmine 实例的基础 URL。不过,我不确定在 API URL
中设置什么。如果我将 API URL
留空,此问题将保持不变。
API username
和 Api password
显然是正确的
重现步骤
- 在测试执行期间单击
Report bug
预期结果
根据report_issue_from_testexecution(execution, user):
When marking TestExecution results inside a Test Run there is a Report link. When the Report link is clicked this method is called to help the user report an issue in the IT.
This is implemented by constructing an URL string which will pre-fill bug details like steps to reproduce, product, version, etc from the test case. Then we open this URL into another browser window!
实际结果
在 Redmine 中创建了一个问题,但在另一个浏览器中没有打开 URL 进行编辑 window。
来自https://kiwitcms.readthedocs.io/en/latest/modules/tcms.issuetracker.html#module-tcms.issuetracker,强调我的
1-click bug report - by clicking a UI element inside TestExecution
Kiwi TCMS will try to automatically report a new bug in the selected
bug tracker. If this fails will fall back to opening a new browser
window to manually enter the required information. Fields will be
pre-filled with correct information when possible.
您正在寻找的功能是后备功能。在您的情况下,Kiwi TCMS 能够毫无错误地与 Redmine 通信,并且能够在 Redmine 中毫无错误地创建错误报告。因此,用户没有机会手动编辑初始报告。
我configured Redmine as external bug tracker
Tracker type
: tcms.issuetracker.types.RedmineBase URL
和API URL
都指向我们的 Redmine 实例的基础 URL。不过,我不确定在API URL
中设置什么。如果我将API URL
留空,此问题将保持不变。API username
和Api password
显然是正确的
重现步骤
- 在测试执行期间单击
Report bug
预期结果
根据report_issue_from_testexecution(execution, user):
When marking TestExecution results inside a Test Run there is a Report link. When the Report link is clicked this method is called to help the user report an issue in the IT.
This is implemented by constructing an URL string which will pre-fill bug details like steps to reproduce, product, version, etc from the test case. Then we open this URL into another browser window!
实际结果
在 Redmine 中创建了一个问题,但在另一个浏览器中没有打开 URL 进行编辑 window。
来自https://kiwitcms.readthedocs.io/en/latest/modules/tcms.issuetracker.html#module-tcms.issuetracker,强调我的
1-click bug report - by clicking a UI element inside TestExecution Kiwi TCMS will try to automatically report a new bug in the selected bug tracker. If this fails will fall back to opening a new browser window to manually enter the required information. Fields will be pre-filled with correct information when possible.
您正在寻找的功能是后备功能。在您的情况下,Kiwi TCMS 能够毫无错误地与 Redmine 通信,并且能够在 Redmine 中毫无错误地创建错误报告。因此,用户没有机会手动编辑初始报告。