gpt4 book ai didi

selenium - 具有多个数据表的 cucumber 步骤

转载 作者:行者123 更新时间:2023-12-03 15:58:34 24 4
gpt4 key购买 nike

如何编写具有两个数据表的 Cucumber 步骤?

应该如何写在特征文件中?

例如,将一行从一个表拖到第二个表的步骤:

When I drag a row from  
| column_table1 |
| object1 |
to
| column_table2 |
| object2 |

最佳答案

添加第二个表没有特殊的语法。只需添加它。

When I drag a row from:
| column_table1 |
| object1 |
And I drop it at:
| column_table2 |
| object2 |

AFAIK,每个步骤只能有一张表,但您可以根据需要使用任意多的表步骤。我解决这个问题的一种方法是将表存储在一个变量中,以便在第三步中经常引用:
Given I have a source row from:
<table>
And I have a destination row at:
<table>
When I drag from the source row and drop at the destimation row
Then .....

关于selenium - 具有多个数据表的 cucumber 步骤,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37164554/

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