0

我想在另一个功能文件中使用一个功能文件中的步骤以及其他步骤

feature file 1
secenario outline: sample test
  Given step 1 with id
  then step 2 with name 
  and step 3 with address
|id | name | address|
|1 | rahul | usa |


feature file 2
secenario outline: sample test
  Given step 1 with id
  then step 2 with name 
  when step 3 with id and name and location
  and step 3 with address
|id | name | address| location |
|1 | rahul | usa | hyd|

在实践中,我有更多 23 个步骤要在我的过程中进行验证。但是当涉及到其他一些客户端时,我需要执行一些额外的步骤来验证。

我无法根据客户跳过这些步骤。所以我计划创建新的功能文件并再次复制相同的步骤。但我有以下问题

bheave.step_registry.Ambiguousstep

请指导我如何解决问题

4

0 回答 0