我可以在一个 @Test 方法中使用两个数据提供程序吗?
我有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,但您可以将这两个数据提供程序合二为一,并将其用于您的测试方法。
No, but you can combine these two data providers into one and use that one for your test method.