gpt4 book ai didi

tags - 如何在机器人框架中标记数据驱动的模板测试

转载 作者:行者123 更新时间:2023-12-02 08:09:16 25 4
gpt4 key购买 nike

我有许多数据驱动的测试,因此我可以使用多行数据运行相同的测试,效果很好。但是,我们还使用 TestRail 并通过 RF 测试上的标签将 RF 测试链接到 TestRail。目前我只为每个模板标记一个 TestRailID。例如:

*** Test Cases ***
Verify Registering For An Event with each CC Type
[Template] Register For An Event with a Credit Card
[Tags] TestRailID=1211 Smoke
${cc_intl} ${personInfo} ${visaCardInfo}
${cc_intl} ${personInfo} ${masterCardInfo}
${cc_intl} ${personInfo} ${americanCardInfo}
#etc

我希望每一行数据都有一个唯一的 TestRailID 标签。如何为上面示例中的每个数据行添加标签?

最佳答案

一个简单的解决方案是修改模板以接受标签作为参数之一,然后调用 set tags在您的关键字中。

例子:

*** Keywords ***
Register For An Event with a Credit Card
[Arguments] ${tag} ${personInfo} ${cardInfo}
set tags ${tag}
log personInfo: ${personInfo} cardInfo: ${cardInfo}

*** Test Cases ***
Verify Registering For An Event with each CC Type
[Template] Register For An Event with a Credit Card
[Tags] TestRailID=1211 Smoke
TestRailID=1 person one visa
TestRailID=2 person two mastercard
TestRailID=3 person three american express

关于tags - 如何在机器人框架中标记数据驱动的模板测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48631160/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com