我可以在一个 @Test 方法中使用两个数据提供程序吗?

发布于 2024-11-02 02:17:35 字数 474 浏览 1 评论 0原文

我有 Excel 和两张表中的数据(数据池和控件)。 这两个数据都有一些共同的值,例如两个工作表中共同的 ID。 例如,在第一个工作表(DataPool)中,我有 3 列,其值类似于

ID1、test1、test2

ID2、test2、test3

ID3.........

在另一张工作表(控件)中,我有如下值:

ID2、val1

ID4,Val3

在这两个工作表中都有常见的值,例如 ID2。

我使用 Dataprovider (DataPool) 作为 Dp1 并使用第二个工作表(Controls)作为 DP2 检索第一个工作表值。现在的问题是我想使用两个工作表值,例如每当我从 Dp1 检索第二行的值时,我也想检查 DP2 的第一行,因为 id 相等。

如何做到这一点。需要帮助

我可以在一个@测试方法中使用两个数据提供者吗? 如果没有,请建议一些解决方法。

I have and Excel with data in two sheets(DataPool and Controls).
Both the data have some common values like IDs which is common in both the sheets.
Like for example in first sheet(DataPool) i have 3 columns with values like

ID1,test1,test2

ID2,test2,test3

ID3.........

In another sheet(Controls) i have values like :

ID2,val1

ID4,Val3

In both the sheets there are common values like ID2.

I retrived first sheet values using Dataprovider (DataPool) as Dp1 and second sheet(Controls) as DP2. Now the question is i want to use two sheet values for example whenever i retrive the value of 2nd row from my Dp1 i also want to check 1st row from DP2, as the ids are equal.

How to do this. Help needed please

Can i use two dataproviders in a single @ test method?
If not please suggest some workaround.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

归属感 2024-11-09 02:17:35

不,但您可以将这两个数据提供程序合二为一,并将其​​用于您的测试方法。

No, but you can combine these two data providers into one and use that one for your test method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文